.navbar-visible {
    transform: translateY(0);
}

.navbar-hidden {
    transform: translateY(-100%);
}

/* Fix dropdown hover issues */
[x-data] > div[x-show] {
    pointer-events: auto !important;
}

/* Ensure dropdowns stay open when hovering */
.relative:hover > div[x-show] {
    display: block !important;
}

/* Cyan color support */
.text-cyan-600 { 
    color: #0891b2; 
}

.bg-cyan-600 { 
    background-color: #0891b2; 
}

.hover\:text-cyan-600:hover { 
    color: #0891b2; 
}

.hover\:bg-cyan-700:hover { 
    background-color: #0e7490; 
}

/* Mobile menu styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

.mobile-menu {
    position: fixed;
    top: 64px; /* Height of navbar */
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}