body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.main {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#header h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.5em;
}

/* Modes Button Section */
.modes {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
#chaptersList button{
    margin: 10px;
}

#versesList button{
    margin: 10px;   
}


.modes button {
    background-color: #3498db;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

.modes button:hover {
    background-color: #2980b9;
}

.modes button:active,
.modes button.selected {
    background-color: #1abc9c;
}

/* Verse Selection Form */
#verseForm {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#verseForm div {
    margin-right: 10px;
}

#verseForm select, #verseForm button {
    padding: 10px;
    font-size: 1.1em;
    border-radius: 5px;
    border: 1px solid #bdc3c7;
}

#verseForm button {
    background-color: #e74c3c;
    color: white;
    cursor: pointer;
}

#verseForm button:hover {
    background-color: #c0392b;
}

/* Game Mode Section */
#game {
    display: none;
}

#game p{
    display: flex;
    justify-content: center;
    align-items: center;
}

#game h2 {
    text-align: center;
}

#game button {
    background-color: #2ecc71;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

#game button:hover {
    background-color: #27ae60;
}

#game select {
    padding: 10px;
    font-size: 1.1em;
    border-radius: 5px;
    border: 1px solid #bdc3c7;
}

#verseGame {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 20px;
}

#optionsGame button {
    padding: 10px;
    margin: 5px;
    background-color: #3498db;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#optionsGame button:hover {
    background-color: #2980b9;
}

#correctCount, #wrongCount, #feedback {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Learning Mode Section */
#learn p{
    display: flex;
    align-items: center;
    justify-content: center;
}

#learn button {
    background-color: #9b59b6;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

#learn button:hover {
    background-color: #8e44ad;
}

#verseLearn, #transliterationLearn, #translationLearn {
    font-size: 1.2em;
    margin-top: 10px;
}

#audioLearn {
    margin-top: 20px;
    width: 100%;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .main {
        width: 95%;
        padding: 10px;
    }

    .modes {
        flex-direction: column;
    }

    .modes button {
        margin-bottom: 10px;
    }

    #verseForm {
        flex-direction: column;
    }

    #verseForm div {
        margin-right: 0;
        margin-bottom: 10px;
    }

    #verseForm select, #verseForm button {
        width: 100%;
    }
}
