/* ===== Custom Scrollbar (Webkit browsers: Chrome, Edge, Safari) ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6; /* Tailwind neutral-100 */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #f59e0b; /* amber-500 */
    border-radius: 10px;
    border: 2px solid #f3f4f6; /* gives padding look */
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #d97706; /* amber-600 */
}

/* ===== Firefox ===== */
* {
    scrollbar-width: thin;
    scrollbar-color: #f59e0b #f3f4f6;
}
