@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;700&display=swap');

body {
    font-family: 'Noto Naskh Arabic', 'Amiri', 'Times New Roman', serif;
    line-height: 1.8;
    margin: 0;
    padding: 40px 20px;
    background-color: #f8f8f8;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    direction: rtl;
}

.quran-container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    width: 90%;
    text-align: right;
    direction: rtl;
}

/* Style for the clickable Surah Name Title */
#surahTitle {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px; /* Space after title */
    color: #222;
    font-size: 1.8em;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

#surahTitle:hover {
    color: #006400; /* Dark Green on hover */
}

/* Styling for the main Quranic text verses */
.quran-text {
    margin-top: 20px;
}

.quran-text p {
    font-size: 1.5em;
    line-height: 2.2;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

/* Optional: Slightly distinct style for the Basmala (Verse 1) */
.quran-text p.basmala {
    font-weight: bold; /* Make Basmala bold */
    font-size: 1.6em; /* Slightly larger */
    color: #000; /* Black color */
    margin-bottom: 25px; /* Extra space after Basmala */
}