/* ============================================================================
   DESIGN SYSTEM & VARIABLES - FASTHV
   Configura estos valores para que coincidan con la gama de colores de tu logo.
   ============================================================================ */
:root {
    /* Colores Principales (Extraídos automáticamente del logo: Azul y Naranja Vibrante) */
    --color-primary: #0070e0;
    --color-primary-hover: #005cba;
    --color-primary-glow: rgba(0, 112, 224, 0.35);
    
    --color-accent: #f05000;
    --color-accent-hover: #d64400;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* Fondos (Escala de Oscuros Premium) */
    --bg-main-start: #0f172a;      /* Slate 900 */
    --bg-main-end: #020617;        /* Slate 950 */
    --bg-card: rgba(30, 41, 59, 0.75); /* Slate 800 esmerilado */
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --bg-input: rgba(15, 23, 42, 0.6);
    --bg-input-border: rgba(255, 255, 255, 0.12);

    /* Textos */
    --text-primary: #f8fafc;       /* Slate 50 */
    --text-secondary: #94a3b8;     /* Slate 400 */
    --text-muted: #64748b;         /* Slate 500 */

    /* Fuentes */
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Sombras y Radios */
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --card-radius: 16px;
    --input-radius: 8px;
    --btn-radius: 10px;
    
    --transition-speed: 0.3s;
}

/* ============================================================================
   ESTILOS GENERALES Y RESET
   ============================================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--bg-main-start), var(--bg-main-end));
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    overflow-x: hidden;
}

/* Contenedor Responsivo Móvil */
.app-container {
    width: 100%;
    max-width: 540px; /* Tamaño ideal para dispositivos móviles / tablets */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(2, 6, 23, 0.4);
    box-shadow: 0 0 50px rgba(0,0,0,0.4);
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

/* ============================================================================
   HEADER
   ============================================================================ */
.app-header {
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bg-card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-placeholder {
    width: 140px;
    height: 45px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Contenedor del Logo en la Bienvenida */
.welcome-logo-container {
    width: 280px;
    height: 85px;
    margin: 0 auto 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.welcome-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.welcome-logo-container svg {
    width: 90px;
    height: 90px;
    color: var(--color-primary);
}

@keyframes bounceIn {
    from { transform: scale(0.3); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -2px;
}

/* Indicador de Pasos del Formulario */
.step-indicator-wrapper {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-bar-container {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   CONTENIDO PRINCIPAL Y PANTALLAS (TRANSICIONES)
   ============================================================================ */
.app-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.app-screen {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
    flex-direction: column;
    flex: 1;
}

.app-screen.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================================
   PANTALLA DE BIENVENIDA
   ============================================================================ */
.welcome-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--card-radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.welcome-badge {
    align-self: center;
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.welcome-card h1 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Características */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin: 10px 0;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 22px;
    background: rgba(255, 255, 255, 0.04);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================================================
   BOTONES
   ============================================================================ */
.btn {
    font-family: var(--font-body);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px var(--color-primary-glow);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: white;
    box-shadow: 0 4px 14px rgba(240, 80, 0, 0.3);
}

.btn-accent:active {
    transform: scale(0.97);
}

.btn-accent:hover {
    box-shadow: 0 6px 20px rgba(240, 80, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:active {
    transform: scale(0.97);
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    width: 100%;
}

.btn-icon {
    padding: 10px 16px;
    font-size: 12px;
    align-self: flex-start;
}

.btn-remove {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
    align-self: flex-end;
}

.btn-remove:hover {
    background: rgba(239, 68, 68, 0.25);
}

/* ============================================================================
   WIZARD DE FORMULARIO
   ============================================================================ */
.form-step {
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-step h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.step-description {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 6px;
}

.wizard-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

.wizard-actions button {
    flex: 1;
}

/* ============================================================================
   CAMPOS DE ENTRADA (FORM INPUTS)
   ============================================================================ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, 
.form-group textarea, 
.form-group select {
    font-family: var(--font-body);
    background: var(--bg-input);
    border: 1px solid var(--bg-input-border);
    border-radius: var(--input-radius);
    padding: 12px 14px;
    font-size: 13.5px;
    color: var(--text-primary);
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    border-color: var(--color-primary);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ============================================================================
   REPEATER LISTS (EDUCACIÓN, EXPERIENCIA, REFERENCIAS DINÁMICAS)
   ============================================================================ */
.repeater-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
}

.repeater-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.repeater-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.repeater-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* ============================================================================
   SELECCIÓN DE PLANTILLAS
   ============================================================================ */
.templates-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.template-card-label {
    cursor: pointer;
    width: 100%;
}

.template-card-label input[type="radio"] {
    display: none;
}

.template-card {
    background: var(--bg-card);
    border: 2px solid var(--bg-card-border);
    border-radius: var(--card-radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s ease;
}

.template-card-label input[type="radio"]:checked + .template-card {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.template-preview {
    height: 100px;
    border-radius: 8px;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.template-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.template-desc {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Diseños simulados de plantilla */
.modern-preview {
    background: linear-gradient(180deg, #101e30 25px, #ffffff 25px);
}
.modern-preview::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 10px;
    width: 30px;
    height: 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.minimalist-preview {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
}
.minimalist-preview::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: #333;
}
.minimalist-preview::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: #111;
}

.creative-preview {
    background: linear-gradient(90deg, #1e293b 30%, #ffffff 30%);
}

/* ============================================================================
   RESUMEN Y COTIZACIÓN (PASO 8)
   ============================================================================ */
.summary-check-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.summary-item {
    font-size: 13px;
    color: var(--text-secondary);
}

.summary-item strong {
    color: var(--text-primary);
}

/* Tarjeta cargando cotización */
.price-loading-card {
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.price-loading-card span {
    font-size: 12.5px;
    color: var(--text-secondary);
}

/* Tarjeta resultado de cotización */
.price-result-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.price-metric-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.metric-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-num {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: white;
}

.metric-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.price-explanation {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
}

/* ============================================================================
   PANTALLA DE PAGO (PASO 9)
   ============================================================================ */
.payment-accounts {
    display: flex;
    gap: 12px;
}

.account-card {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.account-header {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.payment-logo {
    height: 24px;
    max-width: 100%;
    object-fit: contain;
}

.daviplata .payment-logo {
    height: 24px;
    border-radius: 4px;
}

.daviplata-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    font-style: normal;
}

.nequi .account-header { color: #d946ef; }
.daviplata .account-header { color: #f43f5e; }

.account-num {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.account-details {
    font-size: 10px;
    color: var(--text-secondary);
}

/* Zona de Carga de Comprobante */
.upload-group {
    margin-top: 10px;
}

.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    background: rgba(255,255,255,0.01);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 10px;
}

.upload-zone:hover {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.04);
}

.upload-icon {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.upload-zone:hover .upload-icon {
    color: var(--color-primary);
}

.upload-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

#upload-filename {
    font-size: 12px;
    color: var(--color-success);
    font-weight: 700;
    word-break: break-all;
}

/* ============================================================================
   PANTALLA DE ESPERA (POLLING DE CONFIRMACIÓN)
   ============================================================================ */
.polling-card, .success-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--card-radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.polling-card h2, .success-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
}

.polling-details {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.polling-status-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.yellow {
    background-color: var(--color-warning);
    box-shadow: 0 0 8px var(--color-warning);
    animation: pulse 1.5s infinite;
}

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

#polling-status-text {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-secondary);
}

.user-details-summary {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-details-summary strong {
    color: var(--text-secondary);
}

.user-details-summary span {
    color: white;
    font-weight: 600;
}

.alert-info {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 10px;
    padding: 12px;
    font-size: 11.5px;
    color: var(--color-accent);
    line-height: 1.4;
    text-align: left;
}

/* ============================================================================
   PANTALLA DE ÉXITO (DESCARGA DEL PDF)
   ============================================================================ */
.success-icon-badge {
    width: 90px;
    height: 90px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-success);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.download-section {
    width: 100%;
    margin: 10px 0;
}

.btn-download {
    background: linear-gradient(135deg, var(--color-success), #059669);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-download:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.ticket-container {
    width: 100%;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.ticket-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
    margin-bottom: 2px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
}

.ticket-row span {
    color: var(--text-secondary);
}

/* ============================================================================
   SPINNERS (INDICADORES DE CARGA)
   ============================================================================ */
.spinner-small {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255,255,255,0.15);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-large {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.06);
    border-top-color: var(--color-primary);
    border-bottom-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-edit-link {
    background: transparent;
    border: none;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-left: auto;
    padding: 2px 6px;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-edit-link:hover {
    color: var(--color-accent-hover);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13.5px;
}

.summary-section-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 12px 0 8px 0;
}

.summary-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.summary-section-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-subitem {
    font-size: 12.5px;
    color: var(--text-secondary);
    padding-left: 6px;
    line-height: 1.4;
}

.summary-section-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    padding-left: 6px;
}

.summary-empty {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    padding-left: 6px;
}
