body {
    background: lime !important;
}


body.dashboard {
    background: #020617;
    color: #e5e7eb;
}

/* layout general */
.app {
    display: flex;
    min-height: 100vh;
}

/* sidebar */
.sidebar {
    width: 240px;
    background: #020617;
    padding: 20px;
}

.sidebar h2 {
    color: #38bdf8;
    margin-bottom: 20px;
}

.sidebar nav a {
    display: block;
    color: #e5e7eb;
    text-decoration: none;
    padding: 10px 0;
}

.sidebar nav a:hover {
    color: #38bdf8;
}

/* contenido */
.main {
    flex: 1;
    padding: 30px;
    background: #020617;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #020617;
    border: 1px solid #1e293b;
    padding: 20px;
    border-radius: 12px;
}

.card h3 {
    margin-bottom: 10px;
    color: #38bdf8;
}

.card p {
    font-size: 28px;
    font-weight: bold;
}
/* ===== FIX DEFINITIVO DASHBOARD ===== */
body.dashboard {
    display: block !important;
    justify-content: unset !important;
    align-items: unset !important;
    background: #020617 !important;
    color: #e5e7eb !important;
}

body.dashboard * {
    text-align: left !important;
}



