/* Custom styles for Tailwind CSS - Minimal additions only */

/* Mobile menu toggle animation */
#mobileMenuToggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobileMenuToggle.active span:nth-child(2) {
    opacity: 0;
}

#mobileMenuToggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: #222a5c;
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a2145;
}

::-webkit-scrollbar-thumb {
    background: #2d3770;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3d4778;
}
