.ramadan-guide {
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Featured Image */
.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Audio Player */
.audio-player {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

/* Day Header */
.day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    margin: 1rem;
}

.day-number {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.estimated-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Guide Sections */
.guide-section {
    margin: 0.5rem 1rem;
    padding: 1rem;
    background: white;
    border-radius: 4px;
    border: 1px solid #eee;
}

.guide-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: currentColor;
}

.guide-section h2 i {
    font-size: 1rem;
}

/* Learn Section */
.learn-section {
    color: #2196f3;
}

.hadith-quote {
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.quote-text {
    color: #333;
}

/* Do Section */
.do-section {
    color: #4caf50;
}

.action-text {
    font-size: 1rem;
    color: #333;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Reference Section */
.reference-section {
    color: #9c27b0;
}

.reference-quote {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.reference {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    text-align: right;
}

/* Bonus Section */
.bonus-section {
    color: #ff9800;
}

.bonus-text {
    color: #333;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Dua Section */
.dua-section {
    color: #673ab7;
}

.dua-content {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.arabic-text {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.transliteration {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.english-meaning {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Daily Reminder */
.daily-reminder {
    text-align: center;
    margin: 1rem;
    padding: 1rem;
    background: var(--primary-color);
    border-radius: 4px;
}

.daily-reminder i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9) 
}

.reminder-text {
    font-size: 1rem;
    line-height: 1.5;
}

.reminder-text  strong{
    color: white;
}

/* Progress Tracking */
.progress-checkbox {
    margin-left: auto;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: white;
    border-color: white;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 0.8rem;
}

.checkbox-text {
    color: white;
}

/* Copy Button */
.copy-dua-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
}

.dua-content:hover .copy-dua-button {
    opacity: 1;
}

.copy-dua-button:hover {
    background: #f8f9fa;
}

.copy-dua-button i {
    color: #666;
    font-size: 0.9rem;
}

/* Tags */
.blog-tags {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-tag {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: #f8f9fa;
    border-radius: 15px;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ramadan-guide {
        margin: 0;
        border-radius: 0;
    }

    .featured-image {
        border-radius: 0;
    }

    .guide-section {
        margin: 0.5rem;
    }

    .day-header,
    .daily-reminder {
        margin: 0.5rem;
    }

    .arabic-text {
        font-size: 1.5rem;
    }
} 
