﻿.scrollbar-1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.scrollbar-1::-webkit-scrollbar {
    width: 2px;
    height: 9px;
    background-color: #F5F5F5;
}


.scrollbar-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #00aecd;
}

.ibox-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ibox-dashboard-content {
    padding: 10px 20px;
    background-color: #fff;
    /*flex-basis: 18%;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    border-radius: 3px;
    cursor: pointer;
}

    .ibox-dashboard-content img {
        width: 40px;
    }

    .ibox-dashboard-content div {
        font-family: Arial, sans-serif;
        font-size: 14px;
    }

    .ibox-dashboard-content h5 {
        margin: 2px 0;
    }

    .ibox-dashboard-content b {
        color: #00aecd;
        font-size: 16px;
    }

.avatar {
    font-size: 1rem;
    display: inline-flex;
    width: 33px;
    height: 33px;
    color: #fff;
    border-radius: 50%;
    background-color: #adb5bd;
    align-items: center;
    justify-content: center;
}

    .avatar img {
        width: 100%;
        border-radius: 50%;
    }

.avatar-sm {
    font-size: .875rem;
    width: 36px;
    height: 36px;
}

.avatar-group .avatar {
    position: relative;
    z-index: 2;
    border: 2px solid #fff;
}

/*Table */
.media {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropbtn {
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown2 {
    position: relative;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 330px;
    right: 0;
    top: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 13px !important;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #f1f1f1
        }

/* Show the dropdown menu on hover */
.dropdown2:hover .dropdown-content {
    display: block;
}
