/*@tailwind base;
@tailwind components;
@tailwind utilities;*/

@import "bootstrap/dist/css/bootstrap.min.css";

/* ===== Sidebar Empresa (Light Minimal) ===== */
.empresa-sidebar {
    width: 280px;
    min-height: 100vh;
    position: sticky;
    top: 0;

    background: #ffffff;
    color: #0f172a;
    border-right: 1px solid #e5e7eb;
}

.empresa-sidebar .empresa-top {
    border-bottom: 1px solid #e5e7eb;
}

.empresa-sidebar .empresa-subtitle {
    color: #64748b;
}

.empresa-sidebar .menu-label {
    color: #94a3b8;
    letter-spacing: .08em;
}

.empresa-brand-dot {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #22c55e);
    box-shadow: 0 8px 18px rgba(2, 6, 23, .12);
}

/* Items */
.empresa-item {
    background: transparent !important;
    border: 0 !important;
    border-radius: 12px !important;

    color: #0f172a !important;
    padding: .65rem .75rem !important;

    display: flex;
    align-items: center;
    gap: .55rem;

    transition: background .15s ease, transform .05s ease;
}

.empresa-item i { color: #475569; }

.empresa-item:hover {
    background: #f1f5f9 !important;
}

.empresa-item:active {
    transform: translateY(1px);
}

/* Active: barra izquierda + fondo suave */
.empresa-item.active {
    background: #eef2ff !important;
    position: relative;
    color: #0f172a !important;
    font-weight: 600;
}

.empresa-item.active i { color: #4338ca; }

.empresa-item.active::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: #4338ca;
}

/* Disabled (próximo) */
.empresa-item.disabled {
    opacity: .55;
}

/* Footer */
.empresa-footer {
    border-top: 1px solid #e5e7eb;
}

.empresa-user-muted {
    color: #64748b;
}

/* Offcanvas light */
.offcanvas-empresa {
    background: #ffffff;
    color: #0f172a;
}
