/* CCCWale Frontend Styles - System Font Stack for Performance */
:root {
    --primary-color: #2271b1;
    --success-color: #00a32a;
    --danger-color: #d63638;
    --warning-color: #dba617;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cccwale-test-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cccwale-question-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cccwale-option {
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.cccwale-option:hover {
    border-color: var(--primary-color);
    background: #e9f5ff;
}

.cccwale-option.selected {
    background: var(--primary-color);
    color: white;
}

.cccwale-timer {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 24px;
    font-weight: bold;
    z-index: 1000;
}

.cccwale-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    z-index: 999;
}

.cccwale-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.cccwale-btn-primary {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .cccwale-test-container {
        padding: 10px;
    }
    .cccwale-action-bar {
        flex-direction: column;
        gap: 10px;
    }
}
