/* =========================
 SVAS Plugin CSS - Modern AI Edition
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* --- Palette: Modern AI/Tech Theme --- */

    /* Primary Brand: Indigo/Violet Gradient base */
    --primary-600: #4f46e5;
    /* Indigo 600 */
    --primary-700: #4338ca;
    /* Indigo 700 */
    --accent-500: #8b5cf6;
    /* Violet 500 */
    --accent-glow: rgba(139, 92, 246, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-hover: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* Functional Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --danger-hover: #dc2626;

    /* Neutrals */
    --bg-body: #f1f5f9;
    /* Slate 100 */
    --bg-card: #ffffff;
    --text-main: #0f172a;
    /* Slate 900 */
    --text-body: #334155;
    /* Slate 700 */
    --text-muted: #64748b;
    /* Slate 500 */
    --border-light: #e2e8f0;
    /* Slate 200 */
    --border-focus: #818cf8;
    /* Indigo 400 */

    /* UI Variables */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px rgba(79, 70, 229, 0.3);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset & Typography --- */

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* --- Layout Utilities --- */

.svas-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 24px;
}

.svas-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.svas-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- Modern Form Container (Interview Page) --- */

.svas-form {
    max-width: 800px;
    /* Wider for better readability */
    margin: 3rem auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Glass edge hint */
}

/* Decorative Top Gradient Bar */
.svas-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-primary);
}

.svas-form h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.875rem;
    color: var(--text-main);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* --- Inputs & Textareas --- */

.svas-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.svas-form input:not([type="checkbox"]):not([type="radio"]),
.svas-form select,
.svas-form textarea {
    display: block;
    width: 100%;
    /* Accounting for padding/border */
    box-sizing: border-box;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main);
    background-color: #f8fafc;
    /* Slight off-white */
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-family: inherit;
    resize: vertical;
}

.svas-form input:focus,
.svas-form select:focus,
.svas-form textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.svas-form textarea {
    min-height: 160px;
}

/* --- Button Systems --- */

.svas-form button,
button#next-btn,
button#prev-btn,
button#submit-btn,
.btn-record,
.btn-stop {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    /* Pill shape */
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    gap: 0.5rem;
    /* Icon spacing */
    letter-spacing: 0.01em;
}

/* Primary Action Buttons */
.svas-form button,
button#next-btn,
button#submit-btn {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-md), 0 0 0 transparent;
}

.svas-form button:hover,
button#next-btn:hover,
button#submit-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.svas-form button:active,
button#next-btn:active,
button#submit-btn:active {
    transform: translateY(0);
}

/* Secondary/Prev Buttons */
button#prev-btn,
button.btn-prev {
    background-color: #ffffff;
    color: var(--text-body);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

button#prev-btn:hover,
button.btn-prev:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: var(--text-main);
    transform: translateY(-1px);
}

/* --- Interview Interface Specifics --- */

.svas-question {
    display: none;
    /* Controlled by JS */
    animation: slideUpFade 0.5s ease-out forwards;
}

.svas-question.active {
    display: block;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.q-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.5;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

/* Answer Section Wrapper */
.answer-section {
    margin-bottom: 2rem;
}

/* --- Audio Recorder Widget --- */

.audio-recorder-wrapper {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    border: 1px dashed #cbd5e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-fast);
}

.audio-recorder-wrapper:hover {
    border-color: var(--primary-600);
    background: #f1f5f9;
}

.recorder-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.btn-record {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    min-width: 160px;
}

.btn-record:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.4);
    transform: scale(1.02);
}

.btn-record.recording {
    background: #fee2e2;
    color: #dc2626;
    animation: items-pulse 1.5s infinite;
}

@keyframes items-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.btn-stop {
    background: var(--text-body);
    color: white;
    opacity: 0.5;
    cursor: not-allowed;
    min-width: 140px;
}

.btn-stop:enabled {
    opacity: 1;
    cursor: pointer;
    background: var(--text-main);
}

.btn-stop:enabled:hover {
    background: #000;
}

audio {
    width: 100%;
    max-width: 400px;
    height: 44px;
    border-radius: 22px;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-sm);
}

/* --- Navigation & Layout --- */

.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.nav-buttons button {
    min-width: 140px;
}

/* --- Dashboard Tables --- */
table.wp-list-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
    background: #fff;
}

table.wp-list-table thead {
    background-color: #f1f5f9;
}

table.wp-list-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}

table.wp-list-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
    vertical-align: middle;
}

table.wp-list-table tr:hover td {
    background-color: #f8fafc;
}

table.wp-list-table tr:last-child td {
    border-bottom: none;
}

/* --- Toast Notifications --- */
.svas-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #1e293b;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    border-left: 4px solid transparent;
}

.svas-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.svas-toast-success {
    border-left-color: var(--success);
    background: #ffffff;
    color: var(--text-main);
}

.svas-toast-error {
    border-left-color: var(--danger);
    background: #ffffff;
    color: var(--text-main);
}

/* --- Responsive Adaptations --- */

@media (max-width: 640px) {
    .svas-container {
        padding: 0 16px;
    }

    .svas-card,
    .svas-form {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .svas-form h3 {
        font-size: 1.5rem;
    }

    .q-text {
        font-size: 1.25rem;
    }

    .recorder-controls,
    .nav-buttons {
        flex-direction: column;
    }

    .recorder-controls button,
    .nav-buttons button {
        width: 100%;
        min-width: unset;
    }

    .nav-buttons {
        flex-direction: column-reverse;
        /* Prev button at bottom on mobile */
    }
}

/* =========================
 AUTH TABS (Login/Signup)
========================= */
.svas-auth-container {
    max-width: 480px;
    /*margin: 4rem auto;*/
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.05),
        0 20px 50px -10px rgba(79, 70, 229, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: authEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.svas-auth-header-info {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 2.5rem;
}

.svas-auth-header-info h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.svas-auth-header-info p {
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: 500;
}

.svas-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    background: #f1f5f9;
    padding: 0.4rem;
    border-radius: 100px;
    /* Pill shape */
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.svas-tab {
    flex: 1;
    text-align: center;
    padding: 0.875rem 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-muted);
    border-radius: 100px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 5;
    user-select: none;
}

.svas-tab:hover {
    color: var(--text-main);
}

.svas-tab.active {
    color: var(--primary-600);
}

.svas-tab-pill {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    width: calc(50% - 0.4rem);
    height: calc(100% - 0.8rem);
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.svas-tabs-body {
    position: relative;
    z-index: 1;
}

.svas-tab-content {
    display: none;
    animation: authContentFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svas-tab-content.active {
    display: block;
}

@keyframes authContentFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svas-field {
    margin-bottom: 1.75rem;
}

.svas-field label {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.svas-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.svas-input-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: color 0.2s ease;
}

.svas-input-wrapper input,
.svas-input-wrapper select {
    width: 100%;
    padding: 1.125rem 1.25rem 1.125rem 3.25rem !important;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.svas-input-wrapper input:focus,
.svas-input-wrapper select:focus {
    border-color: var(--primary-600);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1) !important;
}

.svas-input-wrapper input:focus+.svas-input-icon,
.svas-input-wrapper input:not(:placeholder-shown)+.svas-input-icon {
    color: var(--primary-600);
}

.svas-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.svas-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-body);
    font-weight: 500;
    cursor: pointer;
}

.svas-checkbox-label input {
    margin: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 4px;
    border: 2px solid var(--border-light);
}

.svas-link {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.svas-link:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

.svas-btn-wide {
    width: 100%;
    padding: 1.25rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2) !important;
}

.svas-btn-wide:hover {
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3) !important;
}

.svas-error {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: var(--radius-md);
    color: var(--danger);
    font-size: 0.875rem;
    text-align: center;
    font-weight: 600;
    animation: svasShake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes svasShake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* =========================
 STUDENT DASHBOARD V2
========================= */
.svas-dashboard-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.svas-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.svas-dash-header h2 {
    font-size: 1.875rem;
    color: var(--text-main);
}

.svas-bell {
    position: relative;
    font-size: 1.5rem;
    text-decoration: none;
    /* No underline */
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    /* Center icon */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.svas-bell:hover {
    color: var(--primary-600);
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.svas-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.svas-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.svas-stat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-fast);
}

.svas-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.svas-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.svas-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Dashboard Tabs */
.svas-dash-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.svas-dash-tab {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition-fast);
}

.svas-dash-tab:hover {
    color: var(--primary-600);
    background: #f8fafc;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.svas-dash-tab.active {
    color: var(--primary-600);
    border-bottom-color: var(--primary-600);
}

.svas-dash-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.svas-dash-content.active {
    display: block;
}

/* Task / Question Cards */
.svas-task-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.svas-task-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-focus);
}

.svas-task-card h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 1.125rem;
}

.svas-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-600);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.svas-btn:hover {
    background: var(--primary-700);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

/* History Card Variant */
.svas-history-card {
    border-left: 4px solid var(--success);
}

.feedback-box {
    margin-top: 1rem;
    padding: 1rem;
    background: #ecfdf5;
    /* Green 50 */
    border-radius: var(--radius-md);
    color: #065f46;
    /* Green 800 */
    font-size: 0.9rem;
    border: 1px solid #a7f3d0;
}

.submitted-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: right;
    font-style: italic;
}

/* --- Interview Grid Layout --- */
.svas-interview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.svas-answer-textarea {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    line-height: 1.6;
    transition: var(--transition-fast);
}

.svas-answer-textarea:focus {
    border-color: var(--primary-600);
    outline: none;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.svas-ai-feedback {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.ai-feedback-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ai-feedback-placeholder {
    color: var(--text-muted);
}

.ai-feedback-result {
    text-align: left;
    width: 100%;
}

.ai-correction-box {
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-600);
    box-shadow: var(--shadow-sm);
}

.corrected-text {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .svas-interview-grid {
        grid-template-columns: 1fr;
    }
}