@charset "utf-8";
/* -----------------------------------------
   Custom.css - put your own changes here 
----------------------------------------- */
.page-content,
.page-content-wrapper,
.page-content-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0;
    padding: 0.5;
	padding-top: 60px; /* Ajusta este valor según la altura de .welcome-msg */
}
/* ==============================
   TEMA AZUL QUANTY - SIDEBAR
============================== */

/* Fondo menú */
#sidebar,
.sidebar {
    /* background: #0d3b66 !important; */
}

/* Texto normal */
#sidebar a,
.sidebar a {
    color: #1d78cc !important;
}

/* Iconos */
#sidebar i,
.sidebar i {
    color: #02407a !important;
}

/* Hover */
#sidebar li:hover > a,
.sidebar li:hover > a {
    background: #145ea8 !important;
    color: #ffffff !important;
}

/* Activo */
#sidebar li.active > a,
.sidebar li.active > a {
    background: #1f7ae0 !important;
    color: #ffffff !important;
}

/* Submenús */
.sidebar ul.sub {
    background: #0b2f52 !important;
}

/* Hover submenú */
.sidebar ul.sub li a:hover {
    background: #1f7ae0 !important;
}

/* ==============================
   SUBMENU BULLETS AZUL
============================== */

/* Bullet normal */
.sidebar ul.sub li a:before {
    background-color: #4ea3ff !important;
}

/* Bullet activo */
.sidebar ul.sub li.active > a:before {
    background-color: #1d5bbf !important;
}

/* Bullet hover */
.sidebar ul.sub li a:hover:before {
    background-color: #1d5bbf !important;
}
.sidebar ul.sub li a:before{
   width:8px;
   height:8px;
}

/* ================================
   FIX PARA FOOTER PEGADO
================================ */

/* Que el body ocupe toda la pantalla */
html, body {
    height: 100%;
}

/* Contenedor principal debe crecer */
#content,
.page-content,
.wrapper,
.main-content {
    min-height: calc(100vh - 70px);
    padding-bottom: 90px;
}

/* Footer normal */
#footer {
    position: relative !important;
    bottom: auto !important;
    width: 85%;
    background: #f8f9fa;
    padding: 12px 20px;
    border-top: 1px solid #ddd;
    font-size: 13px;
}

/* Evita flotados rompiendo layout */
#footer p {
    margin: 0;
}

/* ================================
   Estado: Activo/Inactivo en tablas
================================ */
.badge-activo{
   background:#28a745;
   color:white;
   padding:5px 10px;
   border-radius:12px;
}
.badge-inactivo{
   background:#dc3545;
   color:white;
   padding:5px 10px;
   border-radius:12px;
}

/* ================================
   Filtros en tablas
================================ */

.filtro-barra{
    display: flex;
    justify-content: flex-end;   /* mueve todo a la derecha */
    margin-bottom: 15px;
}

.filtro-grupo{
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f7fb;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.filtro-grupo i{
    color:#0d6efd;
    font-size:14px;
}

.filtro-select{
    width: 150px;
    height: 32px;
    font-size: 13px;
}
/* ================================
   Campos bloqueados
================================ */
input[readonly]{
   background:#f2f2f2;
   cursor:not-allowed;
}
/* ================================
   Logo login y password reset
================================ */
.input-wrapper,
  .password-wrapper {
    width: 80%;
    margin: 0 auto;       /* Sin margen arriba/abajo */
  }
  /* Espacio solo entre inputs */
  .input-wrapper + .password-wrapper {
    margin-top: 6px;      /* espacio pequeño entre email y password */
  }
  .input-wrapper input,
  .password-wrapper input {
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
  }
  .input-wrapper input:focus,
  .password-wrapper input:focus {
    border-color: #3498db;
    outline: none;
  }
  .password-wrapper {
    position: relative;
  }
  .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #3498db;
    font-size: 18px;
    user-select: none;
  }
.login-info{
    color:#0d3b66;
    padding:40px;
}

.brand{
    font-size:48px;
    font-weight:700;
}

.subtitle{
    font-size:18px;
    margin-bottom:25px;
}

.login-info ul{
    list-style:none;
    padding:0;
}

.login-info li{
    font-size:16px;
    margin-bottom:10px;
}
.logo-quanty{
    width:160px;        /* ajustable */
    max-width:80%;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,.25));
	margin:0 auto 0px auto; /* Centrado y separación inferior */

}
.features{
   list-style:none;
   padding:0;
   margin:0;
}

.features li{
   font-size:16px;
   margin:8px 0;
   color:#0d3b66;
}
.logo-quanty{
   transition:transform .4s ease;
}

.logo-quanty:hover{
   transform:scale(1.05);
}

/* ================================
   Para modulo de Nube
================================ */
.explorer-container a.item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.explorer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.item {
    width: 160px;
    height: 150px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.item i {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Fondo suave del módulo */
.modulo-nube {
    background: #f4f6fb;
    padding: 30px;
    border-radius: 16px;
}

/* Card moderna */
.upload-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
    overflow: hidden;
}

/* Header moderno */
.upload-header {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 22px;
    text-align: center;
}

/* Zona drag & drop */
.dropzone-area {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    transition: all .3s ease;
    cursor: pointer;
    background: #f8fafc;
}

.dropzone-area:hover {
    border-color: #2563eb;
    background: #eef2ff;
}

/* Botones */
.btn-quanty-primary {
    background: #2563eb;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-quanty-primary:hover {
    background: #1e40af;
}

.btn-quanty-outline {
    border-radius: 10px;
    padding: 10px 24px;
}
.dropzone-area {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    transition: all .25s ease;
    cursor: pointer;
    background: #f8fafc;
}
.carpeta i{
    font-size:40px;
    color:#f4b400;
}

/* NUEBA BARRA DE BUSQUEDA Y SUBIR ARCHIVOS*/

.drive-toolbar {
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
    margin-bottom: 20px;	
	width: 100%;
    max-width: 100%;
    box-sizing: border-box;

}

.toolbar-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 220px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

/* Buscador adaptable */
.search-input {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 320px;
    border-radius: 25px;
    padding: 6px 15px;
    border: 1px solid #ddd;
}

/* Select adaptable */
.order-select {
    border-radius: 25px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    min-width: 110px;
}

/* Responsive cuando el menú lateral empuja */
@media (max-width: 1200px) {
    .search-input {
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .toolbar-form {
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-right {
        justify-content: flex-start;
    }
}
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* NUEBA ESTILO PARA CONTENEDOR*/

.drive-grid {
    justify-content: flex-start;
}

.drive-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 15px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: all .2s ease;
    cursor: pointer;
}

.drive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* Icono principal */
.drive-icon {
    font-size: 46px;
    margin-bottom: 12px;
}

/* Nombre */
.drive-name {
    font-size: 14px;
    color: #333;
    word-break: break-word;
}

/* Botón editar flotante */
.drive-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
}

.drive-move,
.drive-edit {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 5px;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
    display: none;
}

.drive-card:hover .drive-move,
.drive-card:hover .drive-edit {
    display: block;
}
/* Botón eliminar */
.drive-delete {
    background: #fef2f2;
    border-radius: 8px;
    padding: 5px 6px;
    font-size: 13px;
    color: #dc2626;
    cursor: pointer;
    display: none;
    transition: all .2s ease;
}

/* Hover visual */
.drive-delete:hover {
    background: #dc2626;
    color: #ffffff;
    transform: scale(1.08);
}

/* Mostrar en hover de card */
.drive-card:hover .drive-delete {
    display: block;
}
.btn-papelera {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    transition: all .2s ease;
}

.btn-papelera:hover {
    background: #dc2626;
    color: #fff;
}
/* Base común para acciones flotantes */
.drive-move,
.drive-edit,
.drive-delete,
.drive-restore,
.drive-delete-permanent {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 5px 6px;
    font-size: 13px;
    cursor: pointer;
    display: none;
    transition: all .2s ease;
}

/* Mostrar al hacer hover en card */
.drive-card:hover .drive-move,
.drive-card:hover .drive-edit,
.drive-card:hover .drive-delete,
.drive-card:hover .drive-restore,
.drive-card:hover .drive-delete-permanent {
    display: block;
}

/* ===== RESTAURAR ===== */
.drive-restore {
    color: #16a34a;
}

.drive-restore:hover {
    background: #16a34a;
    color: #ffffff;
    transform: scale(1.08);
}

/* ===== ELIMINAR DEFINITIVO ===== */
.drive-delete-permanent {
    color: #dc2626;
}

.drive-delete-permanent:hover {
    background: #dc2626;
    color: #ffffff;
    transform: scale(1.08);
}
.drive-delete {
    background: #fef2f2;
    border-radius: 8px;
    padding: 5px 6px;
    font-size: 13px;
    color: #dc2626;
    cursor: pointer;
    display: none;
    transition: all .2s ease;
}

.drive-delete:hover {
    background: #dc2626;
    color: #fff;
    transform: scale(1.08);
}

.drive-card:hover .drive-delete {
    display: block;
}
/* ===== LOGIN ===== */

.container {
    display: flex;
    width: 85%;
    max-width: 1100px;
    min-height: 520px; /* Altura mínima, NO fija */
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}


.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0d4d78;
    margin-bottom: 15px;
}

.login-info p {
    color: #555;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    margin-bottom: 18px;
    font-size: 15px;
}

.features strong {
    color: #0d4d78;
    display: block;
    margin-bottom: 4px;
}

.features span {
    color: #666;
    font-size: 14px;
}
@media screen and (max-width: 1024px) {
    .container {
        flex-direction: column;
        width: 95%;
    }

    .left {
        display: none; /* Ocultamos texto largo en móvil */
    }

    .right {
        padding: 40px 30px;
    }
}
/* ===== ===== ===== */

/* CONTENEDOR GENERAL */
.explorer-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* GRID RESPONSIVO REAL */
.drive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
    width: 100%;
}

/* CARDS */
.drive-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease;
}

.drive-card:hover {
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* PROTECCIÓN GLOBAL */
body {
    overflow-x: hidden;
}
.content-wrapper {
    margin-left: 250px;
    transition: all .3s ease;
}
.sidebar.collapsed + .content-wrapper {
    margin-left: 80px;
}
.trash-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 999px;
    box-shadow: 0 0 0 2px #fff;
}
.btn-outline-danger .badge {
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 999px;
}
body {
    background: #f5f7fb;
}

/* TOOLBAR RESPONSIVA */
@media (max-width: 768px) {

    .drive-toolbar form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .toolbar-right .btn {
        flex: 1;
        min-width: 120px;
    }

}
.drive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .drive-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {

    .drive-card {
        padding: 15px 8px;
    }

    .drive-icon i {
        font-size: 32px;
    }

    .drive-name {
        font-size: 13px;
        word-break: break-word;
    }

}
@media (max-width: 768px) {

    .sidebar {
        position: fixed;
        left: -250px;
        transition: left .3s ease;
        z-index: 999;
    }

    .sidebar.active {
        left: 0;
    }

    .content-wrapper {
        margin-left: 0 !important;
    }

}

@media (max-width: 768px) {

    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    h1, h2 {
        font-size: 20px;
    }

}

#page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {

    #page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-stats {
        width: 100%;
    }
    .toolbar-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .toolbar-right .btn {
        width: 100%;
    }
    /* BUSCADOR Y SELECT */
    .toolbar-left input[type="text"] {
        height: 42px;
        font-size: 14px;
    }

    .toolbar-left select {
        height: 42px;
        font-size: 14px;
    }

}
/* ===== ===== ===== */

/* Almacenamiento */
/* ===== HEADER STORAGE INLINE ===== */

.header-storage {
    float: right;
    margin-top: 8px;
}

.storage-inline {
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    min-width: 220px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
}

.storage-info {
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin-bottom: 6px;	
}

.storage-info .percent {
    color: white;
    font-weight: 600;
    margin-left: 5px;
}

.storage-bar-mini {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
}

.storage-fill-mini {
    height: 100%;
    border-radius: 20px;
    transition: width .4s ease;
}

@media (max-width: 768px) {

    #page-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-storage {
        float: none !important;
        margin-top: 12px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .storage-inline {
        width: 85%;
        max-width: 300px;
    }

}
/* ===============================
   KPI para Dashbord
================================= */

.dashboard-kpis {
    margin-top: 25px;
}

.kpi-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.kpi-card:hover {
    transform: translateY(-4px);
	margin-bottom: 15px;
}

.kpi-number {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.kpi-label {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.dashboard-chart {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
	margin-bottom: 15px;
}

.chart-wrapper {
    height: 250px;
    position: relative;
}
/* ===============================
   Permisos perfiles
================================= */

.card-panel {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.perfil-item {
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    text-decoration: none;
    color: #333;
    transition: .2s;
}

.perfil-item:hover {
    background: #e9ecef;
}

.perfil-item.active {
    background: linear-gradient(90deg,#007bff,#00c6ff);
    color: #fff;
}

.permiso-grupo {
    margin-bottom: 20px;
}

.permiso-grupo h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.permiso-item {
    display: block;
    margin-bottom: 6px;
}
.perfil-row {
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 6px;
    background: #f8f9fa;
    transition: .2s;
}

.perfil-row:hover {
    background: #e9ecef;
}

.perfil-active {
    background: linear-gradient(90deg,#007bff,#00c6ff);
}

.perfil-active .perfil-link {
    color: #fff;
}

.perfil-link {
    text-decoration: none;
    color: #333;
    flex: 1;
}

/* ===============================
   Efecto en menu
================================= */
/* Cuando sidebar esté mini (ancho reducido) */
.page-sidebar {
    transition: width .3s ease;
}

/* ===============================
   Ancho MODAL
================================= */

.modal-todos{
    max-width: 95% !important;
    width: 95%;
}

.modal-todos .modal-body{
    max-height: 75vh;
    overflow-y: auto;
}

/* ===============================
   TOMSELECT Bootstrap 4
================================= */

.ts-wrapper{
    width:100%;
    display:block;
}

.ts-wrapper.single .ts-control {
    height: 20px;
    padding: 0.35rem 0.75rem;
    /* Quitar bordes y sombras */
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}


.ts-control{
    border:1px solid #ced4da;
    border-radius:.25rem;
    background:#fff;
    box-sizing:border-box;
}

.ts-control.focus{
    border-color:#80bdff;
    box-shadow:0 0 0 .2rem rgba(0,123,255,.25);
}

.ts-dropdown{
    border:1px solid #ced4da;
    border-radius:.25rem;
    z-index:1065;
}

.ts-dropdown .option.active{
    background:#007bff;
    color:#fff;
}
/* ===============================
   Perzonalizacion del HR
================================= */
hr {
  border: 0;
  height: 1px;
  background: #333;
  text-align: center;
  position: relative;
  overflow: visible;
}

hr::after {
  content: "◆"; /* O cualquier emoji/carácter */
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff; /* Debe ser del color de tu fondo */
  padding: 0 10px;
}

/* ===============================
   Detalle Operaciones
================================= */

.timeline{
border-left:3px solid #ddd;
padding-left:20px;
margin-top:20px;
}

.timeline-item{
position:relative;
margin-bottom:20px;
}

.timeline-icon{
position:absolute;
left:-30px;
top:0;
background:#007bff;
color:#fff;
width:24px;
height:24px;
border-radius:50%;
text-align:center;
line-height:24px;
font-size:12px;
}

.timeline-content{
background:#f9f9f9;
padding:10px;
border-radius:5px;
}
.doc-container{
width:850px;
margin:30px auto;
background:#fff;
padding:35px;
border:1px solid #cfcfcf;
box-shadow:0 0 8px rgba(0,0,0,0.08);
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
}

.doc-header{
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:2px solid #444;
padding-bottom:10px;
margin-bottom:20px;
}

.doc-logo{
height:60px;
}

.doc-ref{
text-align:right;
font-weight:bold;
font-size:16px;
}

.doc-title{
text-align:center;
font-size:20px;
font-weight:bold;
margin:20px 0;
}

.doc-info{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}

.doc-info div{
width:32%;
}

.doc-label{
font-weight:bold;
color:#555;
}

.doc-table{
width:100%;
border-collapse:collapse;
margin-top:10px;
}

.doc-table th{
background:#f2f2f2;
border:1px solid #ccc;
padding:6px;
font-weight:bold;
}

.doc-table td{
border:1px solid #ccc;
padding:6px;
}

.doc-section{
margin-top:25px;
}

.doc-signatures{
display:flex;
justify-content:space-between;
margin-top:60px;
}

.doc-sign{
width:40%;
text-align:center;
}

.doc-line{
border-top:1px solid #000;
margin-top:40px;
padding-top:5px;
}

@media print{

body{
background:white;
}

.doc-container{
border:none;
box-shadow:none;
width:100%;
margin:0;
}

.btn{
display:none;
}

}
/* ===============================
   Dashbord Operaciones
================================= */

.card-dashboard{
padding:20px;
border-radius:8px;
color:#fff;
text-align:center;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.card-dashboard h3{
margin:0;
font-size:28px;
font-weight:bold;
}

.card-dashboard p{
margin:0;
font-size:14px;
}

.bg-warning{ background:#f0ad4e; }
.bg-info{ background:#5bc0de; }
.bg-success{ background:#5cb85c; }
.bg-dark{ background:#343a40; }

.btn-group-custom .btn {
    margin: 2px;
}

.card {
    border-radius: 12px;
    border: none;
}

.card h3 {
    font-weight: bold;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* ===============================
   Dashbord Alertas
================================= */
.dashboard-chart {
    height: 100%;
}
.dashboard-section {
    margin-bottom: 20px;
}

.card-kpi {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card-alert {
    background: #fff5f5;
    border-left: 4px solid #dc3545;
}

.card-operacion {
    background: #f8fbff;
    border-left: 4px solid #007bff;
}

.dashboard-section-title {
    margin-top: 25px;
    margin-bottom: 10px;
}

.dashboard-section-title h4 {
    font-weight: 600;
    color: #2c3e50;
}

.dashboard-section-title hr {
    margin-top: 5px;
    border-top: 2px solid #e9ecef;
}
.section-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* ===============================
   Dashbord operaciones (Botones)
================================= */
.kpi-click {
    cursor: pointer;
    transition: all 0.2s ease;
}

.kpi-click:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
