body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: #fff;
}

.quiz-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #1c1c1c;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.timer, .score-box {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
}

.timer {
    background: #ff6f61;
    color: #fff;
}

.score-box {
    background: #007bff;
    color: #fff;
}

.quiz-box {
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.quiz-box:hover {
    transform: scale(1.03);
}

#choices {
    list-style: none;
    padding: 0;
    margin: 0;
}

.choice {
    background: #2e2e2e;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice:hover {
    background: #007bff;
}

.correct {
    background: #28a745;
    color: white;
}

.incorrect {
    background: #dc3545;
    color: white;
}

.disabled {
    pointer-events: none;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #ffc107;
    color: #1c1c1c;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ff6f61;
}

main {
    flex: 1; /* Pushes the footer to the bottom if content is short */
    padding: 20px;
}


