::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #99a1af;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #7c82a0;
    border-radius: 10px;
    cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #5f6589;
}

.loader {
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: #3498db;
    border-bottom-color: #3498db;
    border-left-color: #3498db;
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loader-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* Yeh line add kar di */
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.loader-overlay.active {
    display: flex;
}

#messageModal {
    display: none;
}

#messageModal.active {
    display: flex;
}
