
        :root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --header-bg: #f0f4f8;
        }
        
   
        .holiday-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .holiday-table th, .holiday-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .holiday-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        
        .holiday-table tr:hover {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .holiday-table .holiday-name {
            font-weight: 500;
        }
        
        .holiday-table .holiday-date {
            color: var(--text-muted);
        }
        
        .holiday-table .days-left {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .holiday-card {
            background: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .holiday-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .holiday-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .holiday-card-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--primary-color);
        }
        
        .holiday-card-date {
            font-weight: 500;
            color: var(--text-muted);
        }
        
        .holiday-card-body {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .holiday-card-days {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .holiday-card-days-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .holiday-card-country {
            background-color: rgba(44, 125, 160, 0.1);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .calendar-view {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-top: 1.5rem;
        }
        
        .calendar-day {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0.75rem;
            text-align: center;
            min-height: 80px;
            position: relative;
        }
        
        .calendar-day-header {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
        }
        
        .calendar-holiday {
            background-color: rgba(44, 125, 160, 0.1);
            border-radius: 4px;
            padding: 0.25rem;
            margin-top: 0.25rem;
            font-size: 0.8rem;
            color: var(--primary-color);
        }
        
        .calendar-day.today {
            background-color: rgba(44, 125, 160, 0.05);
            border-color: var(--primary-color);
        }
        
        .calendar-day.weekend {
            background-color: rgba(255, 0, 0, 0.05);
        }
        
        .calendar-day.holiday {
            background-color: rgba(169, 214, 229, 0.3);
        }
        
        .filter-section {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .holiday-countdown {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .countdown-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        
        .countdown-days {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .countdown-label {
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .countdown-holiday {
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .countdown-date {
            font-size: 1.1rem;
        }
        
        .country-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 1rem;
        }
        
        .country-flag {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 8px;
            object-fit: cover;
        }
        
        .holiday-detail {
            display: none;
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
            border: 1px solid var(--border-color);
        }
        
        .holiday-detail-title {
            font-weight: 600;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .holiday-detail-content {
            line-height: 1.8;
        }
        
        .holiday-type {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .type-public {
            background-color: rgba(44, 125, 160, 0.1);
            color: var(--primary-color);
        }
        
        .type-religious {
            background-color: rgba(255, 193, 7, 0.1);
            color: #ff9800;
        }
        
        .type-national {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }
        
        .holiday-map {
            height: 200px;
            background-color: var(--light-gray);
            border-radius: 6px;
            margin: 1rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-weight: 500;
        }
        
        .holiday-icon {
            font-size: 2rem;
            margin-right: 1rem;
            color: var(--primary-color);
        }
        
        .view-switcher {
            display: flex;
            gap: 10px;
            margin-bottom: 1rem;
        }
        
        .view-btn {
            padding: 0.5rem 1rem;
            border: 1px solid var(--border-color);
            background: white;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .view-btn.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .error-message {
            color: #dc3545;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            display: none;
        }
        
        .holiday-calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .calendar-nav-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        .action-buttons {
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
            margin-top: 1rem;
        }
        
        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            background: white;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .action-btn:hover {
            background-color: var(--light-gray);
        }
        
        .month-filter.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .holiday-stats {
            display: flex;
            justify-content: space-around;
            text-align: center;
            margin: 1.5rem 0;
        }
        
        .stat-card {
            padding: 1rem;
            border-radius: 8px;
            background-color: rgba(44, 125, 160, 0.05);
            flex: 1;
            margin: 0 0.5rem;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
    