/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Hide Elements */
.hidden {
    display: none;
}

/* Navbar */
.navbar {

    background-color: #2D336B;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 20px;

    text-decoration: none;

}

.brand-name h1 {

    color: #ffffff;

    margin: 0;

}

.logo {
    width: 10px; /* Set the width to 35% of the header's width */
    height: 10px;
}

.logo img {
    max-width: 100%; /* Ensure the image doesn't exceed the width of its container */
    height: auto; /* Maintain the aspect ratio */
}

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}

.hamburger div {

    width: 25px;

    height: 3px;

    background-color: #ffffff;

    margin: 4px 0;

}

.nav-buttons {

    display: flex;

    margin-left: auto;

}

.nav-buttons a {

    color: #ffffff;

    text-decoration: none;

    margin: 0 10px;

    font-size: 1rem;

    padding: 5px 10px;

    border-radius: 5px;

}

.nav-buttons a:hover {

    background-color: black;

}

.logout-button {

    background-color: #7886C7;

    padding: 5px 10px;

    border-radius: 5px;

}

.logout-button:hover {

    background-color: black;

}


/* Quiz Selection & Language Selection */
#quiz-selection, #language-selection {
    background: #ffffff;
    padding: 25px;
    margin: 30px auto;
    border-radius: 10px;
    width: 40%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quiz Selection Buttons */
.quiz-btn {
    background-color: #2D336B;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 45%;
    margin: 10px;
}

.quiz-btn:hover {
    background-color: #000000;
}

/* Language Selection Buttons */
.lang-btn {
    background-color: #7886C7;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 45%;
    margin: 10px;
}

.lang-btn:hover {
    background-color: #5f6f9e;
}

/* Quiz Container */
#quiz-container {
    background: #ffffff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Question Styling */
#question-text {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2D336B;
}

/* Option Buttons */
.option {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 6px 0;
    background-color: #7886C7;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.option:hover {
    background-color: #5f6f9e;
}

/* Highlight Selected Answer */
.selected {
    background-color: #2D336B !important;
    color: white;
}

/* Timer */
#timer {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2D336B;
}

/* Question Progress */
#progress {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2D336B;
}

/* Navigation Buttons */
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.nav-button {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    background-color: #2D336B;
    color: white;
}

.nav-button:hover {
    background-color: black;
}

/* Result Page */
#result {
    background: #ffffff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 40%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#score {
    font-size: 22px;
    font-weight: bold;
    color: #2D336B;
}

/* Review Section Styling */
#review-answers {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.review-question {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.correct-answer {
    color: green;
    font-weight: bold;
}

.wrong-answer {
    color: red;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    #quiz-container, #quiz-selection, #language-selection, #result {
        width: 90%;
    }
}
