/* Exam Instructions Styles - extracted from templates/single-quiz-instructions.php */

body {
    background-color: #f1f5f9;
}

.cbt-instructions-container {
    max-width: 1024px;
    margin: 2rem auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: sans-serif;
    background-color: #fff;
    display: flex;
}

.cbt-instructions-main {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.cbt-instructions-sidebar {
    width: 220px;
    background-color: #f8fafc;
    padding: 2rem;
    border-left: 1px solid #e2e8f0;
    text-align: center;
}

.cbt-instructions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #4f46e5;
    color: white;
}

.cbt-instructions-header h2 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cbt-instructions-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

.cbt-instructions-body h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.cbt-instructions-body p,
.cbt-instructions-body li {
    line-height: 1.6;
    color: #475569;
    font-size: 0.9rem;
}

.cbt-legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cbt-legend-symbol {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-right: 10px;
}

.cbt-legend-symbol.green {
    background-color: #22c55e;
}

.cbt-legend-symbol.red {
    background-color: #ef4444;
}

.cbt-legend-symbol.yellow {
    background-color: #eab308;
}

.cbt-legend-symbol.yellow-tick {
    background-color: #eab308;
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white"%3e%3cpath d="M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z"/%3e%3c/svg%3e');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

.cbt-legend-symbol.white {
    background-color: #ffffff;
}

.cbt-instructions-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.cbt-confirmation-box {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.cbt-confirmation-box input {
    margin-top: 5px;
    margin-right: 10px;
}

.cbt-confirmation-box label {
    font-size: 0.8rem;
    color: #64748b;
}

.cbt-proceed-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cbt-language-select {
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 0.4rem;
    font-size: 0.9rem;
}

.cbt-proceed-btn {
    padding: 0.6rem 1.5rem;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.cbt-proceed-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.cbt-user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #e2e8f0;
}

.cbt-user-name {
    font-weight: bold;
    color: #334155;
}