/* ================================
   StudyAcre Exam UI Styling
================================ */

/* Wrapper */
.sa-exam-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
}

/* Timer */
.sa-timer {
    font-size: 20px;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Question Title */
.sa-question-area h3 {
    color: #25398d;
    margin-bottom: 20px;
}

/* Options Styling */
.sa-question-area label {
    display: block;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: #f5f7ff;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.sa-question-area label:hover {
    background: #e8edff;
}

.sa-question-area input[type="radio"] {
    margin-right: 8px;
}

/* Navigation */
.sa-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

/* Buttons */
.sa-start-btn,
.sa-register-btn,
.sa-next,
.sa-prev {
    background: #25398d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.sa-start-btn:hover,
.sa-register-btn:hover,
.sa-next:hover,
.sa-prev:hover {
    background: #1d2f75;
}

.sa-next:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Progress Bar */
.sa-progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 20px;
}

.sa-progress-fill {
    height: 8px;
    background: #f4c542;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Result Card */
.sa-result-card {
    text-align: center;
    padding: 30px;
    background: #f8f9ff;
    border-radius: 15px;
}

.sa-result-card canvas {
    margin-bottom: 20px;
}

.sa-result-card h2 {
    font-size: 28px;
    color: #25398d;
}

.sa-result-card h3 {
    color: #2ecc71;
}

/* Result Table */
.sa-result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.sa-result-table th {
    background: #25398d;
    color: #fff;
    padding: 10px;
    text-align: left;
}

.sa-result-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Analytics Summary */
.sa-analytics-summary {
    margin-top: 20px;
    padding: 15px;
    background: #f5f7ff;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {

    .sa-exam-wrapper {
        padding: 20px;
    }

    .sa-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .sa-start-btn,
    .sa-register-btn,
    .sa-next,
    .sa-prev {
        width: 100%;
    }

    .sa-result-table th,
    .sa-result-table td {
        font-size: 14px;
    }
}