/* Ramzan specific styles */
    .ramzan-header {
        background: #516605;
        color: white;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .ramzan-header h1 {
        margin: 0;
        font-size: 32px;
        font-weight: 700;
    }
    
    .ramzan-header h1 i {
        color: #fbbf24;
        margin-right: 10px;
    }
    
    .ramzan-header .subtitle {
        color: #cbd5e1;
        margin-top: 8px;
        font-size: 16px;
    }
    
    .location-fiqh-selector {
        display: flex;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .fiqh-selector {
        min-width: 150px;
    }
    
    .fiqh-selector select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 16px;
        background-color: white;
        cursor: pointer;
    }
    
    .fiqh-selector select:focus {
        outline: none;
        border-color: #f59e0b;
        box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    }
    
    .ramzan-time-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .ramzan-time-card {
        background: linear-gradient(135deg, #f8fafc, #ffffff);
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #e2e8f0;
        text-align: center;
    }
    
    .ramzan-time-card.sehri-card {
        border-top: 4px solid #516605;
    }
    
    .ramzan-time-card.aftari-card {
        border-top: 4px solid #516605;
    }
    
    .ramzan-time-card .time-label {
        font-size: 18px;
        color: #64748b;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .ramzan-time-card .time-label i {
        font-size: 24px;
    }
    
    .ramzan-time-card.sehri-card .time-label i {
        color: #f59e0b;
    }
    
    .ramzan-time-card.aftari-card .time-label i {
        color: #f59e0b;
    }
    
    .ramzan-time-card .time-display {
        font-size: 42px;
        font-weight: 700;
        color: #1e293b; 
        margin: 15px 0;
    }
    
    .ramzan-time-card .countdown-label {
        font-size: 16px;
        color: #64748b;
        margin-top: 5px;
    }
    
    .ramzan-time-card .countdown-display {
        font-size: 24px;
        font-weight: 600;
        color: #f59e0b;
        font-family: 'Courier New', monospace;
    }
    
    .ramzan-info-card {
        background: #fef3c7;
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }
    
    .ramzan-info-card i {
        font-size: 32px;
        color: #f59e0b;
    }
    
    .ramzan-info-card .info-text {
        font-size: 16px;
        color: #1e293b;
    }
    
    .ramzan-info-card .info-text strong {
        color: black;
    }
    
    .ramzan-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    
    .ramzan-table th {
        background: #f8fafc;
        padding: 15px;
        font-weight: 600;
        color: #1e293b;
        border-bottom: 2px solid #e2e8f0;
        text-align: center;
    }
    
    .ramzan-table td {
        padding: 12px 15px;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .ramzan-table tbody tr:hover {
        background: #f8fafc;
    }
    
    .ramzan-table .today-row {
        background: #fef3c7;
        font-weight: 600;
    }
    
    .ramzan-table .sahri-time { 
        font-weight: 600;
    }
    
    .ramzan-table .aftari-time { 
        font-weight: 600;
    }
    
    .ramzan-day-badge {
        display: inline-block; 
        color: black;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 1000;
    }
    
    .fiqh-badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        margin-left: 10px;
    }
    
    .fiqh-hanafi {
        background: #e6f7e6;
        color: #2e7d32;
        border: 1px solid #2e7d32;
    }
    
    .fiqh-jafri {
        background: #fff3e0;
        color: #f57c00;
        border: 1px solid #f57c00;
    }
    
    .fiqh-note {
        font-size: 14px;
        color: #64748b;
        margin-top: 5px;
        font-style: italic;
    }
    
    .search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        max-height: 300px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
    }
    
    .search-result-item {
        padding: 12px 15px;
        cursor: pointer;
        border-bottom: 1px solid #e2e8f0;
        transition: background 0.2s;
    }
    
    .search-result-item:hover {
        background: #f1f5f9;
    }
    
    .search-loading, .no-results {
        padding: 15px;
        text-align: center;
        color: #64748b;
    }
    
    .search-container {
        position: relative;
        flex: 1;
    }
    
    #city-search {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 16px;
    }
    
    .spinner {
        border: 3px solid #f3f3f3;
        border-top: 3px solid #f59e0b;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto 15px;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .table-loading {
        text-align: center;
        padding: 40px;
        color: #64748b;
    }
    
    .no-data-message {
        text-align: center;
        padding: 40px;
        color: #64748b;
        font-style: italic;
    }
    
    @media (max-width: 768px) {
        .ramzan-time-cards {
            grid-template-columns: 1fr;
        }
        
        .location-fiqh-selector {
            flex-direction: column;
        }
        
        .fiqh-selector {
            width: 100%;
        }
    }
    
    /* Method info */
    .method-info {
        background: #f8fafc;
        border-radius: 8px;
        padding: 15px;
        margin-top: 20px;
        border: 1px solid #e2e8f0;
        text-align: center;
    }
    
    .method-info .label {
        font-weight: 600;
        color: #1e293b;
    }
    
    .method-info .value {
        color: #f59e0b;
        font-weight: 500;
    }

/* SEO Content Styles - Without affecting existing design */
    .seo-content {
        margin-top: 40px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .seo-content h1 {
        font-size: 24px;
        color: #1e293b;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f59e0b;
        text-align: center;
    }
    
    .seo-content h2 {
        font-size: 20px;
        color: #334155;
        margin: 25px 0 15px;
        text-align: center;
    }
    
    .seo-content h3 {
        font-size: 18px;
        color: #475569;
        margin: 20px 0 10px;
    }
    
    .seo-content p {
        color: #4b5563;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    
    .seo-content .dua-box {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 20px;
        border-radius: 12px;
        margin: 20px 0; 
        text-align: center;
    }
    
    html[dir="rtl"] .seo-content .dua-box {
        border-right: none; 
    }
    
    .seo-content .dua-box p {
        font-family: 'Noto Nastaliq Urdu', serif;
        font-size: 20px;
        line-height: 2;
        color: #1e293b;
        margin-bottom: 10px;
    }
    
    .seo-content .dua-box .dua-translation {
        font-size: 14px;
        color: #64748b;
        font-style: italic;
    }
    
    .seo-content .timing-highlight {
        background: #fef3c7;
        padding: 15px;
        border-radius: 10px;
        margin: 20px 0;
        font-weight: 500;
    }
    
    .seo-content .faq-section {
        margin: 30px 0;
    }
    
    .seo-content .faq-item {
        background: #f8fafc;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 15px;
        border: 1px solid #e2e8f0;
    }
    
    .seo-content .faq-question {
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .seo-content .faq-answer {
        color: #475569;
        padding-left: 20px; 
    }
    
    html[dir="rtl"] .seo-content .faq-answer {
        border-left: none; 
        padding-left: 0;
        padding-right: 20px;
    }
    
    .seo-content .timing-list {
        list-style: none;
        padding: 0;
    }
    
    .seo-content .timing-list li {
        padding: 10px 0;
        border-bottom: 1px dashed #e2e8f0;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .seo-content .timing-list li:before {
        content: "•";
        color: #f59e0b;
        font-size: 20px;
        font-weight: bold;
    }
    
    .seo-content .badge {
        display: inline-block;
        padding: 3px 10px;
        background: #f59e0b;
        color: white;
        border-radius: 20px;
        font-size: 12px;
        margin-left: 10px;
    }