/* =============================================================================
   CÁRITAS DIGITAL — Design System v5
   Branding: Colores Cáritas (rojo, blanco, gris oscuro)
   Responsive, zoom support, review persistence UI
   ============================================================================= */

/* --- CSS Variables (Cáritas Branding) --- */
:root {
    /* Cáritas brand colors */
    --caritas-red: #C0392B;
    --caritas-red-light: #E74C3C;
    --caritas-red-dark: #96281B;
    --caritas-red-50: #FDEDEC;
    --caritas-red-100: #FADBD8;
    --caritas-red-200: #F5B7B1;

    /* Accent */
    --accent-primary: var(--caritas-red);
    --accent-light: var(--caritas-red-50);

    /* Neutrals */
    --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB;
    --gray-300: #D1D5DB; --gray-400: #9CA3AF; --gray-500: #6B7280;
    --gray-600: #4B5563; --gray-700: #374151; --gray-800: #1F2937;
    --gray-900: #111827;

    /* Semantic */
    --success: #10B981; --success-bg: #D1FAE5;
    --warning: #F59E0B; --warning-bg: #FEF3C7;
    --danger: #EF4444;  --danger-bg: #FEE2E2;
    --info: #3B82F6;    --info-bg: #DBEAFE;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    /* Radius */
    --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-xl: 24px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; }
.hidden { display: none !important; }

/* --- Typography --- */
h1 { font-size: 28px; font-weight: 800; color: var(--gray-900); }
h2 { font-size: 22px; font-weight: 700; }
h3 { font-size: 16px; font-weight: 600; }
.subtitle { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* --- Login --- */
.login-screen {
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, var(--caritas-red-dark) 100%);
    padding: 20px;
}
.login-card {
    background: white; border-radius: var(--radius-xl); padding: 48px 40px;
    width: 420px; max-width: 100%; box-shadow: var(--shadow-xl);
}
.logo-container { text-align: center; margin-bottom: 32px; }
.logo-icon {
    width: 76px; height: 76px; border-radius: var(--radius-md);
    background: white;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
}
.logo-icon img {
    width: 56px; height: 56px;
    object-fit: contain;
}
.logo-container h1 { font-size: 24px; color: var(--gray-900); margin-bottom: 4px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-input {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md); font-size: 14px; transition: all 0.2s;
    background: white;
}
.form-group input:focus, .form-input:focus {
    outline: none; border-color: var(--caritas-red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.form-select {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md); font-size: 14px; background: white;
    cursor: pointer;
}
.form-select:focus {
    outline: none; border-color: var(--caritas-red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.login-btn {
    width: 100%; padding: 14px; background: linear-gradient(135deg, var(--caritas-red), var(--caritas-red-light));
    color: white; border: none; border-radius: var(--radius-md); font-size: 15px;
    font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.login-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3); }
.login-error { color: var(--danger); font-size: 13px; margin-bottom: 12px; min-height: 18px; }

/* --- Project Selector --- */
.project-selector {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 100vh;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, var(--caritas-red-dark) 100%);
    padding: 40px 20px; color: white;
}
.project-selector h1 { color: white; margin-bottom: 4px; }
.project-selector .subtitle { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.project-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px; width: 100%; max-width: 800px;
}
.project-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
    padding: 28px 24px; text-align: center; cursor: pointer; transition: all 0.3s;
    position: relative;
}
.project-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-card.disabled { opacity: 0.45; cursor: not-allowed; }
.project-card .icon { font-size: 36px; margin-bottom: 12px; display: block; }
.project-card h3 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.project-card p { font-size: 12px; color: rgba(255,255,255,0.6); }
.project-card .lock-badge {
    position: absolute; top: 12px; right: 12px;
    font-size: 14px; opacity: 0.6;
}

/* --- App Layout --- */
.app-container { display: flex; min-height: 100vh; }
.sidebar {
    width: 260px; background: white; border-right: 1px solid var(--gray-200);
    display: flex; flex-direction: column; padding: 20px 0;
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: 12px; padding: 0 20px 20px; border-bottom: 1px solid var(--gray-100); }
.logo {
    width: 48px; height: 48px; background: white;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gray-200); padding: 4px; flex-shrink: 0;
}
.logo img {
    width: 36px; height: 36px;
    object-fit: contain;
}
.brand h2 { font-size: 15px; color: var(--gray-900); }
.project-name { font-size: 11px; color: var(--gray-400); }

.sidebar nav { flex: 1; padding: 12px 12px; display: flex; flex-direction: column; gap: 2px; }
.sidebar-divider { height: 1px; background: var(--gray-100); margin: 8px 4px; }
.nav-link {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    border: none; background: none; border-radius: var(--radius-md);
    font-size: 13px; font-weight: 500; color: var(--gray-600);
    cursor: pointer; transition: all 0.15s; width: 100%; text-align: left;
}
.nav-link:hover { background: var(--gray-50); color: var(--gray-900); }
.nav-link.active { background: var(--caritas-red-50); color: var(--caritas-red); font-weight: 600; }

.user-section {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 20px; border-top: 1px solid var(--gray-100);
    margin-top: auto;
}
.user-avatar {
    width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.user-info { flex: 1; min-width: 0; }
.user-name { font-size: 13px; font-weight: 600; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 11px; color: var(--gray-400); }
.logout-btn { border: none; background: none; cursor: pointer; color: var(--gray-400); padding: 6px; border-radius: 6px; }
.logout-btn:hover { background: var(--danger-bg); color: var(--danger); }

.main-content { flex: 1; margin-left: 260px; display: flex; flex-direction: column; }
.content-header {
    padding: 20px 32px; border-bottom: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: space-between;
    background: white; position: sticky; top: 0; z-index: 20;
}
.page-title { font-size: 22px; }
.content-body { padding: 24px 32px; flex: 1; }

/* --- Badges --- */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.badge-warning { background: var(--warning-bg); color: #B45309; }
.badge-success { background: var(--success-bg); color: #047857; }
.badge-danger { background: var(--danger-bg); color: #B91C1C; }
.badge-info { background: var(--info-bg); color: #1D4ED8; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; border: none; border-radius: var(--radius-md);
    font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.15s;
}
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-primary { background: var(--caritas-red); color: white; }
.btn-primary:hover { background: var(--caritas-red-dark); }
.btn-secondary { background: var(--gray-100); color: var(--gray-700); }
.btn-secondary:hover { background: var(--gray-200); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #059669; }
.btn-ghost { background: transparent; color: var(--gray-500); }
.btn-ghost:hover { background: var(--gray-50); color: var(--gray-700); }
.btn-icon { display: inline-flex; align-items: center; justify-content: center; padding: 8px; border-radius: 8px; border: none; cursor: pointer; }
.btn-group { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* --- Cards --- */
.card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.card-header { padding: 16px 24px; border-bottom: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.card-header h3 { font-size: 15px; }
.card-body { padding: 24px; }

/* --- Drop Zone --- */
.drop-zone {
    border: 2px dashed var(--gray-300); border-radius: var(--radius-lg);
    padding: 48px 24px; text-align: center; cursor: pointer;
    transition: all 0.3s; position: relative;
    background: var(--gray-50);
}
.drop-zone:hover, .drop-zone.dragover {
    border-color: var(--caritas-red); background: var(--caritas-red-50);
    transform: scale(1.01);
}
.drop-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dz-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--caritas-red), var(--caritas-red-light));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: white;
}
.drop-zone h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--gray-800); }
.drop-zone p { font-size: 13px; color: var(--gray-500); }

/* --- Upload Progress --- */
.upload-progress-container { margin-top: 24px; }
.upload-progress-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; background: var(--gray-50);
    border-radius: var(--radius-md); margin-bottom: 6px;
}
.upload-progress-item .filename { flex: 1; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.progress-bar-outer { width: 140px; height: 6px; background: var(--gray-200); border-radius: 10px; overflow: hidden; }
.progress-bar-inner { height: 100%; background: var(--caritas-red); border-radius: 10px; transition: width 0.5s ease; }
.upload-progress-item .status-icon { font-size: 16px; }

/* --- Upload Summary --- */
.upload-summary { margin-top: 24px; }
.summary-stats { display: flex; justify-content: center; gap: 32px; margin-bottom: 24px; flex-wrap: wrap; }
.summary-stat { text-align: center; }
.summary-stat .num { font-size: 32px; font-weight: 800; }
.summary-stat .label { font-size: 12px; color: var(--gray-500); }

/* --- Stats Grid --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
    background: white; border-radius: var(--radius-lg); padding: 20px;
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.stat-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 500; color: var(--gray-500); }
.stat-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.stat-icon.red { background: var(--caritas-red-50); color: var(--caritas-red); }
.stat-icon.green { background: #D1FAE5; color: #059669; }
.stat-icon.amber { background: #FEF3C7; color: #D97706; }
.stat-icon.purple { background: #EDE9FE; color: #7C3AED; }
.stat-value { font-size: 28px; font-weight: 800; color: var(--gray-900); }
.stat-desc { font-size: 12px; color: var(--gray-500); }

/* --- Filter Bar --- */
.filter-bar {
    display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
    padding: 12px 16px; background: white; border-radius: var(--radius-md);
    border: 1px solid var(--gray-200); flex-wrap: wrap;
}
.filter-bar label { font-size: 12px; font-weight: 600; color: var(--gray-500); }
.filter-bar input[type="date"] {
    padding: 6px 10px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: 12px; width: 140px;
}
.search-wrapper { position: relative; flex: 1; min-width: 200px; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.search-input { width: 100%; padding: 8px 12px 8px 36px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); font-size: 13px; }
.search-input:focus { outline: none; border-color: var(--caritas-red); box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1); }

/* --- Satisfaction Bars --- */
.sat-bar-item { margin-bottom: 12px; }
.sat-bar-label { font-size: 13px; color: var(--gray-700); margin-bottom: 4px; display: flex; justify-content: space-between; }
.sat-bar-track { height: 8px; background: var(--gray-100); border-radius: 10px; overflow: hidden; }
.sat-bar-fill { height: 100%; border-radius: 10px; transition: width 0.8s ease; }

/* --- Data Table --- */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--gray-200); }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray-100); }
.data-table tr:hover td { background: var(--gray-50); }

/* --- Review Panel --- */
.review-header {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    margin-bottom: 16px; padding: 16px 20px;
    background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    flex-wrap: wrap;
}
.review-counter { font-size: 14px; color: var(--gray-600); margin-top: 2px; }
.review-panel {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    overflow: hidden; min-height: 70vh;
}
.review-image-panel {
    background: var(--gray-900); display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative; padding: 12px;
}
.review-image-panel img {
    max-width: 100%; height: auto; object-fit: contain;
    transition: transform 0.2s ease; transform-origin: center center;
}
.review-image-panel img.zoomed {
    /* Se remueve max-width: none para permitir grab-to-pan suave mediante CSS transform scale sin scrollbars */
}
.review-data-panel {
    padding: 24px; overflow-y: auto; max-height: 80vh;
}

.review-field { margin-bottom: 16px; }
.review-field label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--gray-700);
    margin-bottom: 4px;
}
.review-field .checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    margin-bottom: 6px !important;
    cursor: pointer !important;
}
.review-field .checkbox-label input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    margin: 0 8px 0 0 !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}
.review-field .checkbox-label span {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--gray-700) !important;
    text-align: left !important;
}
.review-field input:not([type="checkbox"]), .review-field select, .review-field textarea {
    width: 100%; padding: 8px 12px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: 13px; transition: border-color 0.2s;
}
.review-field input[type="checkbox"] {
    width: auto !important;
    margin-right: 8px !important;
    cursor: pointer !important;
}
.review-field input:focus, .review-field select:focus, .review-field textarea:focus {
    outline: none; border-color: var(--caritas-red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}
.review-field textarea { min-height: 64px; resize: vertical; }
.review-field.doubt {
    border-left: 3px solid var(--warning);
    padding-left: 12px; margin-left: -12px;
    background: var(--warning-bg); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 8px 12px;
}
.review-field.doubt label::after {
    content: "⚠ DUDA IA"; font-size: 10px; font-weight: 700;
    color: #92400E; background: #FEF3C7; padding: 2px 6px;
    border-radius: 4px;
}
.field-section-title {
    font-size: 13px; font-weight: 700; color: var(--caritas-red);
    padding: 8px 0 6px; margin-top: 8px; border-bottom: 1px solid var(--caritas-red-100);
    margin-bottom: 12px;
}
.audio-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; font-size: 11px; font-weight: 600;
    border: 1px solid var(--gray-200); border-radius: 6px;
    background: white; cursor: pointer; color: var(--gray-600);
    margin-left: 8px; transition: all 0.2s;
}
.audio-btn:hover { background: var(--caritas-red-50); border-color: var(--caritas-red); color: var(--caritas-red); }
.audio-btn.recording { background: var(--danger); color: white; border-color: var(--danger); animation: pulse 1.2s infinite; }

.ai-suggest-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; font-size: 11px; font-weight: 600;
    border: 1px solid #d8b4fe; border-radius: 6px;
    background: #faf5ff; cursor: pointer; color: #6b21a8;
    margin-left: 8px; transition: all 0.2s;
}
.ai-suggest-btn:hover { background: #f3e8ff; border-color: #a855f7; color: #581c87; }
.ai-suggest-btn.loading { opacity: 0.7; cursor: wait; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* --- Empty State --- */
.empty-state { text-align: center; padding: 48px 24px; color: var(--gray-400); }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-size: 16px; color: var(--gray-600); margin-bottom: 4px; }

/* --- Toast --- */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 100; display: flex; flex-direction: column; gap: 8px; }
.toast {
    padding: 12px 20px; border-radius: var(--radius-md); font-size: 13px;
    font-weight: 500; color: white; box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease; max-width: 380px;
}
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-warning { background: var(--warning); color: #1F2937; }
.toast-info { background: var(--info); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* --- Loading --- */
.loading-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px); display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 200;
}
.spinner {
    width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid var(--caritas-red); border-radius: 50%;
    animation: spin 0.8s linear infinite; margin-bottom: 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay p { color: white; font-size: 14px; font-weight: 500; }

/* --- Opinion Item --- */
.opinion-item {
    padding: 14px 16px; background: var(--gray-50);
    border-radius: var(--radius-md); margin-bottom: 10px;
}
.opinion-item .opinion-quote { font-size: 14px; font-style: italic; color: var(--gray-700); margin-bottom: 6px; }
.opinion-item .opinion-meta { font-size: 11px; color: var(--gray-400); }

/* --- Costs Table --- */
.costs-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 13px; }
.costs-table th, .costs-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--gray-100); }
.costs-table th { background: var(--gray-50); font-weight: 600; color: var(--gray-600); font-size: 11px; text-transform: uppercase; }
.costs-table .recommended { background: #D1FAE5; }

/* --- Responsive --- */
@media (max-width: 1200px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    #view-dashboard > div:nth-child(3) { grid-template-columns: 1fr; }
    .review-panel { grid-template-columns: 1fr; }
    .review-image-panel { max-height: 40vh; }
}
@media (max-width: 900px) {
    .sidebar { width: 200px; }
    .main-content { margin-left: 200px; }
    .brand h2 { font-size: 13px; }
    .content-body { padding: 16px; }
}
@media (max-width: 768px) {
    .sidebar { display: none; }
    .main-content { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .review-panel { grid-template-columns: 1fr; }
    .content-header { padding: 16px; }
    .content-body { padding: 12px; }
}
@media (max-width: 640px) {
    .login-card { padding: 32px 24px; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    #edit-modal > div > div:last-child { grid-template-columns: 1fr !important; }
}

/* --- Administration View --- */
.admin-table {
    width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 13px;
}
.admin-table th, .admin-table td {
    padding: 10px 12px; text-align: left; border-bottom: 1.5px solid var(--gray-100);
}
.admin-table th {
    background: var(--gray-50); font-weight: 600; color: var(--gray-700);
}
.admin-table tr:hover {
    background: var(--gray-50);
}
.admin-card {
    background: white; border-radius: var(--radius-md); border: 1.5px solid var(--gray-200);
    padding: 16px; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.admin-card h3 {
    margin-bottom: 12px; color: var(--gray-900); font-size: 15px; border-bottom: 1.5px solid var(--gray-100); padding-bottom: 8px;
}
.recovery-link {
    display: block; text-align: right; margin-top: -12px; margin-bottom: 16px;
    font-size: 13px; color: var(--caritas-red); cursor: pointer; text-decoration: underline;
}
.recovery-link:hover {
    color: var(--caritas-red-dark);
}

