/* NestHappy — Custom Scrollbar (Brand: #3199D0) */

/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #e0f2fe;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #3199D0;
    border-radius: 10px;
    border: 2px solid #e0f2fe;
}

::-webkit-scrollbar-thumb:hover {
    background: #5BB8DE;
}

/* Thin scrollbar for inner containers */
.thin-scroll::-webkit-scrollbar {
    width: 4px;
}

.thin-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.thin-scroll::-webkit-scrollbar-thumb {
    background: #3199D0;
    border-radius: 4px;
}

.thin-scroll::-webkit-scrollbar-thumb:hover {
    background: #5BB8DE;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3199D0 #e0f2fe;
}

/* Hide scrollbar but keep scrollable (utility class) */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
