.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1;
}

@keyframes viewFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.2s ease-out forwards;
}

.view-section {
    /* Visibility handled by Tailwind 'hidden' class */
}
.view-section.active {
    animation: viewFadeIn 0.3s ease-in-out forwards;
}

.calendar-gradient {
    background: linear-gradient(180deg, rgba(71, 235, 180, 0.05) 0%, rgba(17, 33, 28, 0) 100%);
}
.glass-card {
    background: rgba(28, 38, 35, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.dark .glass-panel {
    background: rgba(28, 46, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-item-active {
    color: #11211c;
}
.dark .nav-item-active {
    color: #ffffff;
}
.nav-item-active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
    color: #47ebb4;
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar for Desktop */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.5);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 163, 175, 0.8);
}
.dark ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Weather Gradients */
.weather-gradient-sunny {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}
.weather-gradient-cloudy {
    background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
}
.weather-gradient-rainy {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
}
.weather-gradient-night {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}
