/* Custom styles that extend Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F0FDFA; /* brand-light */
}

/* Mobile menu transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0D9488;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #134E4A;
}
