/* HEADER */

.dashboard-title {
    font-weight: 600;
}


/* CARDS */

.dashboard-card {
    border: none;
    border-radius: 16px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.dashboard-card .card-body{
    display:flex;
    align-items:center;
    gap:20px;
}

.dashboard-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}


/* ICONOS */

.dashboard-card-icon{
    width:60px;
    height:60px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:white;
}


/* COLORES */

.dashboard-card-empresas .dashboard-card-icon{
    background: linear-gradient(135deg,#4e73df,#224abe);
}

.dashboard-card-users .dashboard-card-icon{
    background: linear-gradient(135deg,#1cc88a,#169b6b);
}


/* TEXTOS */

.dashboard-card-title{
    font-size:14px;
    color:#6c757d;
    margin-bottom:4px;
}

.dashboard-card-number{
    font-size:28px;
    font-weight:700;
}


/* TABLAS */

.dashboard-table{
    border-radius:14px;
    overflow:hidden;
}

.dashboard-table thead{
    background:#f8f9fa;
    font-size:13px;
    text-transform:uppercase;
}

/* EMPRESAS CARDS */

.empresa-card{
    border:none;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .25s ease;
}

.empresa-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}


.empresa-header{
    margin-bottom:10px;
}

.empresa-nombre{
    font-size:18px;
    font-weight:600;
}


.empresa-info p{
    font-size:14px;
    color:#6c757d;
    margin-bottom:10px;
}


/* FOOTER CARD */

.empresa-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
    border-top:1px solid #eee;
    padding-top:12px;
}


.empresa-sucursales{
    font-size:14px;
    font-weight:500;
    color:#495057;
}

.empresa-ver{
    border-radius:10px;
}

/* =========================
DASHBOARD GENERAL
========================= */

body{
    background:#f6f8fb;
}

/* =========================
CARDS RESUMEN
========================= */
.dashboard-content {
    padding-bottom: 3.5rem;
}
.dashboard-card{
    border:none;
    border-radius:14px;
    background:white;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:all .25s ease;
}

.dashboard-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,0.08);
}

.dashboard-card .card-body{
    display:flex;
    align-items:center;
    gap:20px;
}

/* icono */

.dashboard-card-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:white;
}

/* colores */

.dashboard-card-empresas .dashboard-card-icon{
    background:linear-gradient(135deg,#4f7cff,#3358e6);
}

.dashboard-card-users .dashboard-card-icon{
    background:linear-gradient(135deg,#27c27c,#1a9e63);
}

/* texto */

.dashboard-card-title{
    font-size:14px;
    color:#6b7280;
    margin-bottom:3px;
}

.dashboard-card-number{
    font-weight:700;
    font-size:28px;
}

/* =========================
CARDS GRAFICAS
========================= */

.dashboard-cards .card{
    border:none;
    border-radius:14px;
    background:white;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.dashboard-cards canvas{
    height:260px !important;
}

/* =========================
EMPRESAS
========================= */

.empresa-card{
    border:none;
    border-radius:16px;
    box-shadow:0 12px 25px rgba(0,0,0,0.05);
    transition:all .25s ease;
}

.empresa-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 35px rgba(0,0,0,0.08);
}

.empresa-nombre{
    font-weight:600;
}

.empresa-info p{
    font-size:14px;
    color:#6b7280;
}

.empresa-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
}

.empresa-sucursales{
    font-size:14px;
    color:#4b5563;
}

.empresa-ver{
    border-radius:8px;
}
.dashboard-card-header{
    background:transparent;
    border-bottom:1px solid #eef1f6;
    font-weight:600;
    font-size:14px;
}