.ssc-quiz-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ssc-quiz-setup h2, .ssc-quiz-box h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.ssc-form-group {
    margin-bottom: 15px;
}

.ssc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #34495e;
}

.ssc-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
}

.ssc-btn {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: background 0.3s;
}

.ssc-btn:hover {
    background-color: #2980b9;
}

.ssc-question-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ssc-options label {
    display: block;
    padding: 12px 15px;
    margin: 10px 0;
    background: #ecf0f1;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 16px;
}

.ssc-options label:hover {
    background: #dfe6e9;
}

.ssc-options input {
    margin-right: 12px;
}

.ssc-hidden {
    display: none !important;
}

.ssc-timer {
    font-size: 16px;
    font-weight: bold;
    color: #e74c3c;
    float: right;
}