/* الأنماط العامة */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    transition: background-color 0.3s, color 0.3s;
}

.container {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
}

header h1 {
    color: #343a40;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.dedication-text {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0 20px 0;
    transition: color 0.3s, background-color 0.3s;
}

header p {
    color: #6c757d;
    margin-bottom: 25px;
    transition: color 0.3s;
}

.controls {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px; /* زيادة المسافة السفلية */
    flex-wrap: wrap;
    gap: 15px;
}

.select-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 250px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #495057;
    transition: color 0.3s;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #495057;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* --- تصميم مشغل الصوت الجديد --- */
.audio-player-container {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    transition: background-color 0.3s, border-color 0.3s;
}

#current-verse-info {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s;
}

audio {
    width: 100%;
    height: 40px; /* تحديد ارتفاع المشغل */
}

/* تخصيص ألوان المشغل (قد يختلف الدعم بين المتصفحات) */
audio::-webkit-media-controls-panel {
    background-color: #f8f9fa;
    border-radius: 8px;
}
/* --- نهاية تصميم المشغل --- */

#quran-content {
    margin-top: 20px;
    text-align: right;
    border-top: 2px solid #e9ecef; /* خط فاصل بين المشغل والآيات */
    padding-top: 20px;
}

#surah-details {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: bold;
    padding-bottom: 10px;
    color: #343a40;
    transition: border-color 0.3s, color 0.3s;
}

.verse {
    font-family: 'Amiri Quran', serif;
    font-size: 2.1em;
    padding: 15px 5px;
    line-height: 1.9;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.verse:last-child {
    border-bottom: none;
}

.verse.playing {
    background-color: rgba(0, 123, 255, 0.1);
    color: #0056b3;
}

.verse-number {
    font-size: 0.5em;
    color: #007bff;
    font-family: 'Tajawal', sans-serif;
    margin-left: 5px;
    transition: color 0.3s;
}

/* زر التبديل للوضع الداكن */
.mode-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.mode-toggle label { margin-right: 10px; font-size: 0.9em; }
.mode-toggle input[type="checkbox"] { position: relative; width: 40px; height: 20px; -webkit-appearance: none; background: #adb5bd; outline: none; border-radius: 20px; box-shadow: inset 0 0 5px rgba(0,0,0,0.2); transition: .5s; cursor: pointer; }
.mode-toggle input[type="checkbox"]:checked { background: #007bff; }
.mode-toggle input[type="checkbox"]::before { content: ''; position: absolute; width: 16px; height: 16px; border-radius: 20px; top: 2px; left: 2px; background: #fff; transform: scale(1.1); box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: .5s; }
.mode-toggle input[type="checkbox"]:checked::before { left: 22px; }

/* --- الوضع الداكن المحسّن --- */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}
body.dark-mode .container { background-color: #1e1e1e; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); border: 1px solid #2c2c2c; }
body.dark-mode header h1 { color: #ffffff; }
body.dark-mode header p { color: #a0a0a0; }
body.dark-mode .dedication-text { color: #58a6ff; background-color: rgba(88, 166, 255, 0.1); }
body.dark-mode label { color: #e0e0e0; }
body.dark-mode select { background-color: #2c2c2c; color: #e0e0e0; border-color: #444; }

/* تصميم المشغل في الوضع الداكن */
body.dark-mode .audio-player-container {
    background-color: #2c2c2c;
    border-color: #444;
}
body.dark-mode #current-verse-info {
    color: #c0c0c0;
}
body.dark-mode audio::-webkit-media-controls-panel {
    background-color: #2c2c2c;
}
body.dark-mode audio::-webkit-media-controls-enclosure {
    background-color: #2c2c2c;
}
/* نهاية تصميم المشغل الداكن */

body.dark-mode #quran-content { border-top-color: #333; }
body.dark-mode #surah-details { color: #ffffff; }
body.dark-mode .verse { color: #e0e0e0; border-bottom-color: #333; }
body.dark-mode .verse.playing { background-color: rgba(88, 166, 255, 0.15); color: #80baff; }
body.dark-mode .verse-number { color: #58a6ff; }

/* Styling for the Visitor Badge */
.visitor-badge-container {
    margin-top: 15px;
    margin-bottom: -10px;
}

/* --- تنسيق قسم الحقوق (Footer) --- */
footer {
    margin-top: 30px; /* مسافة علوية لفصله عن المحتوى */
    padding-top: 20px; /* مسافة داخلية */
    border-top: 1px solid #e9ecef; /* خط فاصل علوي */
    color: #f4f5f6; /* لون نص رمادي */
    font-size: 0.9em; /* حجم خط أصغر قليلاً */
}

/* تعديل شكل الخط الفاصل واللون في الوضع الداكن */
body.dark-mode footer {
    border-top-color: #333;
    color: #090a0b;
}