:root {
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --primary-color: #0d6efd;
    --accent-color: #ffc107;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.site-nav {
    padding: 1rem 2rem;
    background: #e9ecef;
}

h1, h2, h3 {
    color: #0b5ed7;
}

.question-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
    border-left: 5px solid var(--primary-color);
}

blockquote.draft-excerpt {
    background: #e9ecef;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    margin: 1.5rem 0;
}

/* RECORDING MODE */
body.recording-mode header,
body.recording-mode .site-nav,
body.recording-mode #stats,
body.recording-mode .recording-toggle {
    display: none !important;
}

body.recording-mode {
    background-color: #ffffff;
    font-size: 26px; /* Optimized for screen reading/recording */
}

body.recording-mode .container {
    max-width: 100%;
    padding: 4rem;
}

body.recording-mode .question-card {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    border-left: none;
    border-bottom: 2px dashed #ddd;
    margin-bottom: 15vh;
    padding: 0;
}

.recording-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
}

.progress-container {
    background: #e9ecef;
    border-radius: 20px;
    height: 20px;
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    background: #198754;
    height: 100%;
    width: 0%;
    transition: width 0.3s;
}

.year-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

select.status-dropdown {
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ced4da;
}
