/* ==========================================
   FOOTER DEL DASHBOARD
   ========================================== */
.dashboard-footer {
    position: fixed;
    bottom: 0;
    left: 250px; /* empieza después del sidebar */
    width: calc(100% - 250px); /* ancho restante del dashboard */
    height: 60px; /* altura fija */
    background-color: #1f1f2e;
    color: #ccc;
    display: flex;
    justify-content: center; /* centrado horizontal */
    align-items: center;     /* centrado vertical */
    border-top: 1px solid #2c2c3e;
    font-size: 0.875rem;
    z-index: 900;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

/* Links del footer */
.dashboard-footer a {
    color: #4eaaff;
    text-decoration: none;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    transition: color 0.2s ease;
}

.dashboard-footer a:hover {
    color: #fff;
}

/* Separador opcional */
.dashboard-footer .separator {
    margin: 0 0.5rem;
    color: #666;
}
