.islamic-header {
        background: rgb(83, 104, 5);
        color: white;
        padding: 30px 20px;
        border-radius: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .islamic-header h1 {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
    }
    
    .islamic-header h1 i { 
        margin-right: 15px;
    }
    
    .islamic-header .subtitle {
        color: #cbd5e1;
        margin-top: 12px;
        font-size: 18px;
    }
    
    .date-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        margin-bottom: 30px;
        border: 1px solid #e2e8f0;
        text-align: center;
    }
    
    .date-badge {
        background: #fef3c7;
        color: black;
        padding: 8px 20px;
        border-radius: 30px;
        display: inline-block;
        font-size: 16px;
        font-weight: 1000;
        margin-bottom: 25px;
    }
    
    .hijri-date-main {
        font-size: 48px;
        font-weight: 700;
        color: #1e293b;
        margin: 20px 0;
        line-height: 1.3;
    }
    
    .hijri-date-main span {
        color: #f59e0b;
    }
    
    .date-desc {
        color: #64748b;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 30px;
        line-height: 1.6;
    }
    
    .info-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    
    .info-item {
        background: #f8fafc;
        padding: 20px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .info-label {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .info-value {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
    }
    
    .info-value.highlight {
        color: #f59e0b;
    }
    
    .week-calendar {
        background: white;
        border-radius: 16px;
        padding: 25px;
        margin: 30px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .week-days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    
    .day-card {
        background: #f8fafc;
        border-radius: 12px;
        padding: 15px;
        text-align: center;
        border: 1px solid #e2e8f0;
        transition: transform 0.2s;
    }
    
    .day-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: #f59e0b;
    }
    
    .day-card.today {
        background: #fef3c7;
        border: 2px solid #f59e0b;
    }
    
    .day-name {
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 8px;
        font-size: 16px;
    }
    
    .hijri-day {
        font-size: 20px;
        font-weight: 700;
        color: #f59e0b;
        margin: 8px 0;
    }
    
    .gregorian-date {
        font-size: 12px;
        color: #64748b;
    }
    
    .month-calendar {
        margin: 40px 0;
        overflow-x: auto;
    }
    
    .month-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .month-table th {
        background: rgb(83, 104, 5);
        color: white;
        padding: 15px;
        font-weight: 600;
    }
    
    .month-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .month-table td.today-cell {
        background: #fef3c7;
        font-weight: 700;
        border: 2px solid #f59e0b;
    }
    
    .hijri-number {
        font-weight: 700;
        color: #1e293b;
    }
    
    .gregorian-number {
        font-size: 12px;
        color: #64748b;
        margin-top: 4px;
    }
    
    .city-card {
        background: linear-gradient(135deg, #f8fafc, #ffffff);
        border-radius: 16px;
        padding: 20px;
        margin: 15px 0;
        border: 1px solid #e2e8f0;
    }
    
    .city-name {
        font-size: 18px;
        font-weight: 600;
        color: #f59e0b;
        margin-bottom: 5px;
    }
    
    .months-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        font-family: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', serif;
        margin: 30px 0;
    }
    
    .month-item {
        background: #f8fafc;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .month-name {
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 5px;
    }
    
    .arabic-name {
        color: black;
        font-size: 20px; 
    }
    
    @media (max-width: 768px) {
        .info-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .week-days {
            grid-template-columns: repeat(7, 1fr);
            overflow-x: auto;
        }
        
        .months-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .hijri-date-main {
            font-size: 32px;
        }
    }
    
    .loading-spinner {
        display: inline-block;
        width: 40px;
        height: 40px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #f59e0b;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .city-selector {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    
    .city-selector select {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 16px;
        min-width: 250px;
    }
    
    .city-selector button {
        background: #f59e0b;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .city-selector button:hover {
        background: #d97706;
    }


/* Navigation buttons hover effect */
.nav-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Month navigation container */
.month-navigation {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

/* Today cell styling */
.today-cell {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    font-weight: 700;
}

/* Hover effect for table cells */
.month-table td:hover {
    background: #f1f5f9;
    cursor: pointer;
}

/* Current month-year display */
#current-month-year {
    background: rgb(83, 104, 5);
    color: white !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 15px;
}
