.aside {
    background-color: #006600;
}

.aside-menu .menu>.menu-item>.menu-link .menu-title {
    color: rgb(206, 215, 224);
}

.aside .aside-logo {
    background-color: #006600;
}

.aside-menu .menu>.menu-item>.menu-link .menu-icon, .aside-menu .menu>.menu-item>.menu-link .menu-icon .svg-icon, .aside-menu .menu>.menu-item>.menu-link .menu-icon i {
    color: #fff;
}

menu .menu>.menu-item>.menu-link .menu-icon i {
    color: #fff;
}

.aside-menu .menu>.menu-item.here>.menu-link { 
    background-color: aliceblue;
    color: #000;
}

.aside-menu .menu>.menu-item.here>.menu-link .menu-title {
    color: #000;
}

.login-aside {
    background-color: #006600;
}

.login-aside {
    width:auto;
}

.login-form {
    width:400px;
}

.login-form-input {
    padding:20px;
}

.login-form-btn {
    background-color: #e4e6ef;
    padding: 15px 30px 15px 30px;
    border-radius: 20px;
    margin-left:130px;
    margin-top:30px;
}

.form-group label, .text-green {
    color: #006600;
}

.text-green {
    color: #006600;
}

.login-logo {
    width: 50%;
}

.login-1 {
    background-color: #006600;
}

.login-content {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: #fff;
}

.btn-green {
    background-color: #006600;
}

.bg-green {
    background-color: #006600;
}

.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.pointer {
    cursor: pointer;
}

.float-right {
    float: right;
}

.scrollable-panel {
    overflow-y: auto;
}

#fs-20 {
    font-size: 20px;
}

.gf-badge {
    background-color: red;
    font-size:12px;
    border-radius: 20px;
    padding: 3px 6px 1px 6px;
    color: #fff;
    font-weight: bold;
}

.ml-5 {
    margin-left: 1.25rem !important;
}

.modal-backdrop {
    z-index: 99;
}

.select2-container .select2-selection--single {
    height: 40px;
    background-color: #000;
    background-color: var(--kt-primary-light)!important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.gf-listing-loader {
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.scrollable-menu {
    overflow-y: scroll; /* Always show vertical scrollbar */
    position: relative;
    max-height: 100%; /* Adjust this as needed */

    /* Firefox scrollbar */
    scrollbar-width: thin; /* Scrollbar width */
    scrollbar-color: #fff #f1f1f1; /* Scrollbar thumb and track color */
}

/* Webkit browsers (Chrome, Safari) */
.scrollable-menu::-webkit-scrollbar {
    width: 12px;
}

.scrollable-menu::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
}

.scrollable-menu::-webkit-scrollbar-thumb {
    background: #fff; /* Scrollbar thumb color */
    border-radius: 6px; /* Optional: adds rounded corners to the scrollbar thumb */
}

/* General scrollbar style for other browsers if supported */
.scrollable-menu::-ms-scrollbar {
    width: 12px;
}

.scrollable-menu::-ms-scrollbar-track {
    background: #f1f1f1; /* Track color */
}

.scrollable-menu::-ms-scrollbar-thumb {
    background: #fff; /* Scrollbar thumb color */
    border-radius: 6px; /* Optional: adds rounded corners to the scrollbar thumb */
}

.scroll-arrow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #999;
    cursor: pointer; /* Make it clear that the arrow is clickable */
}

.scroll-arrow i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}