/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-image: url("/images/lgbt-bg.jpg");
    color: #333;
    margin: 0;
    padding: 20px;
    }

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 20px;
}

.disclaimer {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* Question Cards */
.question-card {
    display: none;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.question-card.active {
    display: block;
}

.question-text {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.options label {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.options label:hover {
    background-color: #f0f0f0;
}

.options input[type="radio"] {
    margin-right: 10px;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#prevBtn {
    background-color: #e0e0e0;
    color: #333;
}

#nextBtn, #submitBtn {
    background-color: #4a6fa5;
    color: white;
}

button:hover {
    opacity: 0.9;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Progress indicator */
.progress {
    margin-bottom: 20px;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #4a6fa5;
    width: 0%;
    transition: width 0.3s;
}