/* ── Scrollbar personalizado ─────────────────────────────────────────────── */
::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: #f1f5f9; }
::-webkit-scrollbar-thumb  { background: #94a3b8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* ── Selección de texto ───────────────────────────────────────────────────── */
::selection      { background-color: #fed7aa; color: #9a3412; }
::-moz-selection { background-color: #fed7aa; color: #9a3412; }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
#sidebar {
    transition: transform 0.25s ease;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
}

.nav-item:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.nav-item.active {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    font-weight: 500;
}

.nav-item svg {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
}

/* ── Contenido ───────────────────────────────────────────────────────────── */
#content-wrapper {
    animation: fadeIn 0.2s ease;
}

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

/* ── Tablas ──────────────────────────────────────────────────────────────── */
table { border-collapse: collapse; }

tbody tr:hover { background-color: #f8fafc; }

/* ── Modales ─────────────────────────────────────────────────────────────── */
.modal-enter {
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Loading spinner ─────────────────────────────────────────────────────── */
.spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid #e2e8f0;
    border-top-color: #f97316;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

/* ── Overlay móvil ───────────────────────────────────────────────────────── */
#sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 20;
}

@media (max-width: 1024px) {
    #sidebar { transform: translateX(-100%); }
    #sidebar.open { transform: translateX(0); }
    #sidebar.open ~ #sidebar-overlay { display: block; }
    #main-wrapper { margin-left: 0 !important; }
}

/* ── Portal público ──────────────────────────────────────────────────────── */
.fade-in {
    animation: portalFadeIn 0.25s ease forwards;
}

@keyframes portalFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
