@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eee6c3;
    color: white;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
}

/* Quiz Container */
.quiz-container {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 100px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    position: relative;
}

/* Dropdown Categories */
.category {
    width: 100%;
    margin-bottom: 20px;
}

.category-toggle {
    width: 100%;
    background-color: #625f5f;
    border: 1px solid #323030;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    text-align: left;
    border-radius: 5px;
    transition: background-color 0.3s;
    color: white;
}

.category-toggle:hover {
    background-color: #373636;
}

.subcategories {
    display: none;
    padding-left: 20px;
}

/* Quiz Items */
.quiz-item {
    margin-bottom: 20px;
    display: block;
}

.quiz-item p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Input Styling */
input[type='text'] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    min-height: 50px !important;
}

/* Correct/Incorrect Styling */
input[type='text'].correct {
    background-color: lightgreen;
}

input[type='text'].incorrect {
    background-color: lightcoral;
}

input[type='text']:disabled {
    background-color: #f1f1f1;
}

/* Multiple Choice Radio Buttons */
.quiz-item label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.quiz-item input[type='radio'] {
    margin-right: 10px;
}

/* Submit Button (Floating at Bottom) */
.submit-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2e3a2;
    color: #4b4b4b;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    z-index: 100;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background-color: #e0d18b;
}

/* General Buttons */
button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #eee6c3;
    color: #4b4b4b;
    border: none;
}

button:hover {
    background-color: #d4c89c;
}

/* Modal Window */
.modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgb(71, 70, 70);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Fuel Tracker */
.fuel-tracker {
    font-size: 16px;
    margin-left: 15px;
}

/* Logout Button */
#logoutButton {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

#logoutButton:hover {
    background-color: #cb646441;
}
