.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* User Information Form Styles */
#userInfoForm {
    
}

.user-info-header {
    text-align: center;
    margin-bottom: 30px;
}

.user-info-header h1 {
    
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.user-info-header p {
    text-align: right;
   
    margin: 5px 0;
}

.user-info-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
    color: #bdc3c7;
}




/* Confirmation Message Styles */
#confirmationMessage {
    padding: 30px;
    text-align: center;
}

.confirmation-content h2 {
    
   
    margin-bottom: 20px;
}

.confirmation-content p {
    
    line-height: 1.6;
    margin: 15px 0;
}

#progressContainer {
    
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

#progressBar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

#progressFill {
    height: 100%;
    background: linear-gradient(90deg, #7F2548, 0%, #a53560 100%);
    transition: width 0.3s ease;
    width: 1.67%; /* 1/60 = 1.67% */
}

#progressText {
    text-align: center;
    font-weight: bold;
    color: #7F2548;
}

#questionContainer {
    padding: 30px;
    min-height: 300px;
}

#questionText {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

#answerOptions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.answer-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.answer-option:hover {
    border-color: #7F2548;
    background: #7F2548;
    transform: translateY(-2px);
}

.answer-option.selected {
    border-color: #7F2548;
    background: #7F2548;
    color: white;
}

.answer-option input[type="radio"] {
    margin-left: 15px;
    transform: scale(1.2);
}

.answer-option label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

#navigationButtons {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover:not(:disabled) {
    background: #5a6268;
}

#submissionStatus {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        border-radius: 10px;
    }
    
    #userInfoForm,
    #questionContainer,
    #confirmationMessage {
        padding: 20px;
    }
    
    .user-info-header h1 {
        font-size: 24px;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn {
        min-width: 100px;
        padding: 10px 20px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 16px;
    }
    
    #answerOptions {
        max-width: 100%;
    }
    
    .answer-option {
        padding: 12px 15px;
    }
} 