.full-screen {
    width: 100vw;        /* 100% del ancho de la pantalla */
    height: 100vh;       /* 100% del alto visible en pantalla */
    display: flex;       /* opcional si quieres centrar contenido */
    justify-content: center;
    align-items: center;
    background: radial-gradient(
        circle at center,
        #E00000 0%,
        #A00000 40%,
        #4A0000 100%
    );

    /* Opcional: para hacerlo aún más suave */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.center-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;          /* responsivo */
    width: 100%;               /* se ajusta en móviles */
    text-align: center;
}


/* GRID DEL DASHBOARD */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* WIDGET */
.widget {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    border-left: 6px solid #E00000;
}

/* EFECTO HOVER */
.widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ICONO */
.widget .icon {
    background: #E00000;
    padding: 16px;
    border-radius: 12px;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    box-shadow: 0 3px 10px rgba(224, 0, 0, 0.3);
}

/* TEXTO */
.widget h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #B00000;
}

.widget p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all .2s ease-in-out;
}

.dashboard-card:hover {
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.12);
}

.dashboard-card-header {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #E00000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card-header i {
    color: #E00000;
    font-size: 22px;
}

.dashboard-card-body {
    width: 100%;
    min-height: 280px;
}

.dashboard-card-body canvas {
    width: 100% !important;
    height: 100% !important;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

