.tooltip-css {
    position: relative;
    cursor: pointer;
}

.tooltip-css:hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 105%;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    white-space: normal;
    z-index: 99999;
    min-width: 200px;
    max-width: 350px;
}

/* AdminLTE sidebar: fixed + independent scrolling + cleaner scrollbar */
body.layout-fixed .main-sidebar .sidebar {
    height: calc(100vh - 3.5rem);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

body.layout-fixed .main-sidebar .sidebar::-webkit-scrollbar {
    width: 8px;
}

body.layout-fixed .main-sidebar .sidebar::-webkit-scrollbar-track {
    background: transparent;
}

body.layout-fixed .main-sidebar .sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.32);
    border-radius: 10px;
}

body.layout-fixed .main-sidebar .sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
