        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
        }
        .festival-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .festival-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(255, 152, 0, 0.2);
        }
        .header-gradient {
            background: linear-gradient(135deg, #ff9800, #f57c00);
        }
        .text-saffron {
            color: #ff6b35;
        }
        .text-gold {
            color: #b8860b;
        }
		.text-xl {
			font-size: 1.09rem;
			line-height: 1.75rem;
		}
        .bg-saffron {
            background-color: #ff6b35;
        }
        .border-saffron {
            border-color: #ff6b35;
        }
        .dropdown-container select {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }
        .festival-info {
            background: linear-gradient(145deg, #fff3e0, #ffe0b2);
            border-left: 4px solid #ff9800;
        }
        .muhurat-time {
            background: linear-gradient(145deg, #e8f5e8, #c8e6c9);
            border-radius: 8px;
            border: 1px solid #4caf50;
        }
        .warning-box {
            background: linear-gradient(145deg, #fff8e1, #ffecb3);
            border: 1px solid #ffc107;
            border-radius: 8px;
        }
        .data-source {
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            border: 1px solid #2196f3;
            border-radius: 8px;
        }
         
        @media print {
            body {
                background: white !important;
            }
            .no-print {
                display: none !important;
            }
        }
		
		.festival-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

	    .date-box {
            background: linear-gradient(135deg, #ff6b35, #ffa500);
            color: white;
            font-weight: bold;
            border-radius: 8px;
            padding: 12px;
            text-align: center;
            margin-bottom: 16px;
        }

	    .header-nav {
            background: #ff6b35;
            color: white;
            padding: 15px 0;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            transition: all 0.3s ease-in-out;
            max-height: 0;
            overflow: hidden;
        }
        
        .mobile-menu.active {
            max-height: 500px;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 40;
            display: none;
        }
        
        .menu-overlay.active {
            display: block;
        }


				/* Loader Overlay */
#loadingOverlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid gold;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}