/* ============================================
   SISTEMA DE DISEÑO — RRHH Cardedeu Hotels
   Basado en Help Desk Design System
   ============================================ */

:root {
    color-scheme: dark;
    
    /* ========== BACKGROUNDS ========== */
    --bg-primary:   #0f172a;
    --bg-secondary: #1e293b;
    --bg-sidebar:   #111827;
    
    /* ========== BORDERS ========== */
    --border-light:  #334155;
    --border-medium: #2d3f59;
    --border-dark:   #1e3351;
    --border-accent: #1e3a5f;
    
    /* ========== TEXTS ========== */
    --text-primary:   #e2e8f0;
    --text-secondary: #cbd5e1;
    --text-muted:     #64748b;
    --text-subtle:    #475569;
    --text-accent:    #f1f5f9;
    
    /* ========== ACCENT COLORS ========== */
    --accent-blue:       #38bdf8;
    --accent-blue-hover: #7dd3fc;
    --accent-blue-dark:  #0284c7;
    
    /* ========== STATUS COLORS ========== */
    /* Blue (Info/Normal) */
    --blue-bg:   #172554;
    --blue-text: #93c5fd;
    
    /* Green (Success/Completado) */
    --green-bg:   #14532d;
    --green-text: #86efac;
    
    /* Yellow (Warning/En progreso) */
    --yellow-bg:   #451a03;
    --yellow-text: #fcd34d;
    
    /* Red (Error/Crítico) */
    --red-bg:   #450a0a;
    --red-text: #fca5a5;
    
    /* Gray (Neutral/Inactivo) */
    --gray-bg:   #1e293b;
    --gray-text: #64748b;
    
    /* ========== BUTTONS ========== */
    /* Primary */
    --btn-primary-bg:     #0284c7;
    --btn-primary-border: #0369a1;
    --btn-primary-text:   #fff;
    
    /* Success */
    --btn-success-bg:     #15803d;
    --btn-success-border: #166534;
    --btn-success-text:   #fff;
    
    /* Secondary */
    --btn-secondary-bg:     #1e293b;
    --btn-secondary-border: #334155;
    --btn-secondary-text:   #cbd5e1;
    
    /* Danger */
    --btn-danger-bg:     #991b1b;
    --btn-danger-border: #7f1d1d;
    --btn-danger-text:   #fff;
    
    /* Ghost */
    --btn-ghost-bg:     transparent;
    --btn-ghost-border: transparent;
    --btn-ghost-text:   #64748b;
}

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

/* ========== BASE STYLES ========== */
html, body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== SCROLLBARS ========== */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* ========== TYPOGRAPHY ========== */
h1 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 8px;
}

h2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-subtle);
    margin-bottom: 12px;
}

p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.15s;
}

a:hover {
    color: var(--accent-blue-hover);
}

/* ========== LAYOUT ========== */
.app-shell {
    display: flex;
    min-height: 100vh;
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    transition: width 0.2s ease;
    z-index: 1000;
}

.sidebar__brand {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-dark);
    min-height: 54px;
}

.sidebar__eyebrow {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-subtle);
    margin-bottom: 4px;
}

.sidebar h2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 2px;
}

.sidebar__brand p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.sidebar__nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 6px;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    margin-bottom: 2px;
    border-radius: 6px;
    color: #8b9ab5;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    position: relative;
}

.sidebar__link:hover {
    background: #1a2a44;
    color: var(--text-secondary);
}

.sidebar__link.active {
    background: #1d3a5f;
    color: var(--accent-blue);
}

.sidebar__link.active::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 25%;
    bottom: 25%;
    width: 3px;
    background: var(--accent-blue);
    border-radius: 0 2px 2px 0;
}

.sidebar__footer {
    padding: 14px 12px;
    border-top: 1px solid var(--border-dark);
}

.sidebar__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    margin-bottom: 8px;
}

.sidebar__meta span {
    color: var(--text-muted);
}

.sidebar__meta strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.sidebar__logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 6px;
    color: #fca5a5;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.15s;
}

.sidebar__logout:hover {
    opacity: 0.85;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    flex: 1;
    margin-left: 220px;
    padding: 28px 24px;
    max-width: calc(1200px + 220px);
    transition: margin-left 0.2s ease;
}

/* ========== PAGE HEADER ========== */
.page-header {
    margin-bottom: 22px;
}

.page-header__eyebrow {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-subtle);
    margin-bottom: 6px;
}

.page-header h1 {
    margin-bottom: 4px;
}

.page-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ========== CARDS ========== */
.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 14px;
}

/* ========== METRICS CARDS ========== */
.card--metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
}

.metric-label {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-subtle);
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
}

/* ========== DASHBOARD GRID ========== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.15s;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.85;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn--primary,
.btn-primary {
    background: var(--btn-primary-bg);
    border-color: var(--btn-primary-border);
    color: var(--btn-primary-text);
}

.btn--success,
.btn-success {
    background: var(--btn-success-bg);
    border-color: var(--btn-success-border);
    color: var(--btn-success-text);
}

.btn--secondary,
.btn-secondary {
    background: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-border);
    color: var(--btn-secondary-text);
}

.btn--danger,
.btn-danger {
    background: var(--btn-danger-bg);
    border-color: var(--btn-danger-border);
    color: var(--btn-danger-text);
}

.btn--ghost,
.btn-ghost {
    background: var(--btn-ghost-bg);
    border-color: var(--btn-ghost-border);
    color: var(--btn-ghost-text);
}

.btn--ghost:hover,
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}

.btn-xs {
    padding: 2px 8px;
    font-size: 11px;
}

/* ========== BADGES (STATUS PILLS) ========== */
.status-pill,
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.status-pill--success,
.badge-green {
    background: var(--green-bg);
    color: var(--green-text);
}

.status-pill--pending,
.badge-yellow {
    background: var(--yellow-bg);
    color: var(--yellow-text);
}

.status-pill--error,
.badge-red {
    background: var(--red-bg);
    color: var(--red-text);
}

.status-pill--info,
.badge-blue {
    background: var(--blue-bg);
    color: var(--blue-text);
}

.badge-gray {
    background: var(--gray-bg);
    color: var(--gray-text);
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #94a3b8;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 8px 11px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.15s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-blue-dark);
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.18);
}

select {
    appearance: none;
    cursor: pointer;
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

textarea {
    min-height: 88px;
    resize: vertical;
}

.form-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========== FILTERS ========== */
.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: end;
}

.filters-actions {
    display: flex;
    gap: 8px;
}

/* ========== TABLES ========== */
.table-wrap {
    overflow-x: auto;
    margin: -20px;
    padding: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead th {
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-align: left;
    border-bottom: 1px solid var(--border-medium);
}

.data-table tbody td {
    padding: 11px 14px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-accent);
}

.data-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.table-empty {
    text-align: center;
    padding: 40px 20px !important;
    color: var(--text-muted);
}

.table-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 12px;
}

.table-meta strong {
    color: var(--text-primary);
    font-weight: 600;
}

.table-meta span {
    color: var(--text-muted);
}

/* ========== ALERTS ========== */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-success {
    background: var(--green-bg);
    color: #bbf7d0;
    border-color: #22c55e;
}

.alert-error {
    background: var(--red-bg);
    color: #fecaca;
    border-color: #ef4444;
}

.alert-info {
    background: var(--blue-bg);
    color: #bfdbfe;
    border-color: #3b82f6;
}

/* ========== AUTH PAGE ========== */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    padding: 32px;
}

.auth-kicker {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-subtle);
    margin: 0 !important;
}

.auth-card h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.auth-copy {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px !important;
}

.auth-card .form-group {
    margin-bottom: 18px;
}

.auth-card .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* ========== LOG VIEW ========== */
.log-view code {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--text-secondary);
    white-space: pre-wrap;
    word-break: break-all;
}

/* ========== UTILITIES ========== */
.text-muted {
    color: var(--text-muted) !important;
}

.text-sm {
    font-size: 12px !important;
}

.divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 20px 0;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .sidebar {
        width: 52px;
    }

    .sidebar__brand {
        min-height: 52px;
        padding: 16px 0;
        display: flex;
        justify-content: center;
    }

    .sidebar__eyebrow {
        margin: 0;
        justify-content: center;
    }

    .sidebar__eyebrow svg {
        width: 20px !important;
        height: 20px !important;
        margin: 0 !important;
    }

    .sidebar__brand p,
    .sidebar__brand h2,
    .sidebar__eyebrow-text,
    .sidebar__link-label,
    .sidebar__badge,
    .sidebar__meta,
    .sidebar__logout-label {
        display: none;
    }

    .sidebar__nav {
        padding: 10px 5px;
    }

    .sidebar__link {
        justify-content: center;
        gap: 0;
        padding: 11px 0;
    }

    .sidebar__footer {
        padding: 10px 5px;
    }

    .sidebar__logout {
        justify-content: center;
        padding: 10px 0;
    }
    
    .main-content {
        margin-left: 52px;
        width: calc(100% - 52px);
        min-width: 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 16px 12px;
    }
    
    .card {
        padding: 16px;
    }
    
    .table-wrap {
        margin: -16px;
        padding: 16px;
    }
}

/* ══════════════════════════════════════
   STATS GRID & CARDS
══════════════════════════════════════ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s, transform 0.15s;
}
.stat-card:hover { border-color: rgba(56,189,248,0.3); transform: translateY(-1px); }

.stat-card__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(100, 116, 139, 0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #64748b;
}
.stat-card__icon svg { width: 20px; height: 20px; }

.stat-card--primary .stat-card__icon { background: rgba(56,189,248,0.15); color: #38bdf8; }
.stat-card--success .stat-card__icon { background: rgba(34,197,94,0.15);  color: #22c55e; }
.stat-card--warning .stat-card__icon { background: rgba(251,191,36,0.15); color: #fbbf24; }
.stat-card--danger  .stat-card__icon { background: rgba(239,68,68,0.15);  color: #ef4444; }

.stat-card__content { flex: 1; min-width: 0; }
.stat-card__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stat-card__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1;
}

/* Page header flex */
.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   MODAL — global (usado en todas las páginas)
══════════════════════════════════════ */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}
.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 10px;
    width: 94%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    border: 1px solid var(--border-primary, #1e3a5f);
}
/* Variante ancha para expediente — altura FIJA para que no salte al cambiar tab */
.modal-content.ficha-modal {
    max-width: 860px;
    height: 88vh;           /* altura fija: sin saltos al cambiar tab */
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;       /* scroll lo maneja .ficha-tab-content */
}
.modal-header {
    padding: 16px 22px;
    border-bottom: 1px solid var(--border-primary, #1e3a5f);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.modal-close {
    background: none; border: none;
    font-size: 26px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    transition: all 0.15s;
}
.modal-close:hover { background: var(--bg-primary); color: var(--text-primary); }
.modal-body { padding: 20px 22px; }

/* ══════════════════════════════════════
   FICHA TABS (modal con pestañas)
══════════════════════════════════════ */
.ficha-tabs {
    display: flex;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-primary, #1e3a5f);
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: none;
}
.ficha-tabs::-webkit-scrollbar { display: none; }
.ficha-tab {
    flex: 1;                   /* distribución igual */
    min-width: 0;              /* permite que encoja */
    display: flex;
    flex-direction: column;    /* icono arriba, texto abajo */
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    padding: 9px 6px;
    cursor: pointer;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.18s;
}
.ficha-tab:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.ficha-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(56,189,248,0.07);
}
/* Icono: visible siempre; texto (.tab-label): solo en activo o siempre (responsive) */
.ficha-tab svg { flex-shrink: 0; }
.ficha-tab .tab-label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.ficha-tab-content {
    display: none;
    padding: 20px 22px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;           /* necesario en flex para que overflow-y funcione */
    /* scroll suave al cambiar tab */
    scroll-behavior: smooth;
}
.ficha-tab-content.active {
    display: block;          /* block es flex-item igual, toma el flex:1 */
}
#fichaForm { display: flex; flex-direction: column; overflow: hidden; flex: 1; min-height: 0; }
.ficha-footer {
    display: flex; gap: 10px; justify-content: flex-end;
    padding: 14px 22px;
    border-top: 1px solid var(--border-primary, #1e3a5f);
    background: var(--bg-primary);
    flex-shrink: 0;
}
.form-section-title {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: var(--accent);
    border-bottom: 1px solid rgba(56,189,248,0.2);
    padding-bottom: 6px;
    margin: 16px 0 14px;
}
.form-section-title:first-child { margin-top: 0; }

/* ══════════════════════════════════════
   FORM ROWS (grilla de campos)
══════════════════════════════════════ */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 11px; font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 9px 11px;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary, #1e3a5f);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    width: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
}
.form-group input[readonly] { background: #111827; color: #64748b; cursor: not-allowed; }
.form-group textarea { resize: vertical; }
.form-group input[type="file"] {
    padding: 6px 8px;
    font-size: 12px;
    cursor: pointer;
}

/* Botones extra-small */
.btn--xs { padding: 3px 8px; font-size: 11px; }
