
  /* ===== TOGGLE SWITCH CORPORATIVO ===== */
  .switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    vertical-align: middle;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #adb5bd;
    transition: .25s;
    border-radius: 34px;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 2px;
    bottom: 2px;
    background-color: #ffffff;
    transition: .25s;
    border-radius: 50%;
  }

  .switch input:checked + .slider {
    background-color: #696cff; /* azul corporativo */
  }

  .switch input:checked + .slider:before {
    transform: translateX(20px);
  }

  /* ===== BOTÓN ÍCONO (VER) ===== */
.btn-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #566a7f;
  background: #fff;
  text-decoration: none;
  vertical-align: middle;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.btn-icon i {
  font-size: 1rem;
  line-height: 1;
}

.btn-icon:hover {
  background-color: #f5f6fa;
  border-color: #d9dee3;
  color: #696cff;
  transform: translateY(-1px);
}

/* ===== BADGE ACTIVA / INACTIVA (OUTLINE) ===== */
.badge-outline {
  background-color: transparent;
  border: 1px solid;
  border-radius: .5rem;
  padding: .35rem .6rem;
  font-weight: 600;
  font-size: .75rem;
}

/* Activa */
.badge-outline-active {
  color: #42ab49;           /* verde Bootstrap */
  border-color: #42ab49;
}

/* Inactiva */
.badge-outline-inactive {
  color: #6c757d;         /* gris claro */
  border-color: #6c757d;
}

/* ===== ICONOS 3D (TABLAS) ===== */
.icon-3d {
  width: 22
  px;          /* tamaño ideal */
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 6px;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.icon-3d:hover {
  transform: scale(1.15);
  filter: brightness(1.05);
}

.btn-reset{
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
}

  table.table {
    font-size: 1.05rem; /* 👈 letras más grandes */
  }

  table.table thead th {
    font-size: 1.1rem;
    font-weight: 700;
  }

  table.table tbody td {
    padding-top: 12px;
    padding-bottom: 12px;
    
  }

  

  .switch {
    transform: scale(1.1); /* 👈 toggle más grande */
  }

  .card {
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
  }

  .form-label {
    font-size: 1rem;
    font-weight: 600;
  }

  input, select, textarea {
    font-size: 1rem !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
  }

  h3 {
    font-size: 1.6rem;
    font-weight: 700;
  }

  h6 {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 14px;
    border-radius: 10px;
  }

  .form-text {
    font-size: .9rem;
  }


    h3 {
    font-size: 1.6rem;
    font-weight: 700;
  }

  h6 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .card-body div {
    font-size: 1rem;
  }

  .text-muted.small {
    font-size: .9rem;
  }

  .badge {
    font-size: .85rem;
    padding: 6px 10px;
    border-radius: 8px;
  }

  .badge-status {
    background-color: transparent;
    font-weight: 600;
    padding: .35rem .6rem;
    border-radius: .5rem;
    border: 1px solid;
    font-size: .75rem;
  }

  .badge-status-approved,
  .badge-status-done,
  .badge-status-finalizado,
  .badge-status-aprobada {
    color: #42ab49;
    border-color: #42ab49;
  }

  .badge-status-draft,
  .badge-status-borrador {
    color: #6c757d;
    border-color: #6c757d;
  }

  .badge-status-sent,
  .badge-status-in_progress,
  .badge-status-enviada,
  .badge-status-progreso {
    color: #696cff;
    border-color: #696cff;
  }

  .badge-status-pending {
    color: #b7791f;
    border-color: #f6c343;
  }

  .badge-status-rejected,
  .badge-status-cancelled,
  .badge-status-rechazada,
  .badge-status-cancelada {
    color: #c63637;
    border-color: #c63637;
  }

  .list-group-item {
    font-size: 1rem;
    padding: 10px 14px;
  }

  .btn {
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 8px;
  }

  img {
    box-shadow: 0 6px 12px rgba(0,0,0,.12);
  }

  /* ===============================
   BOTONES OSCUROS – TEMA SISTEMA
   =============================== */

.btn-dark {
  background-color: #696cff !important;
  border-color: #696cff !important;
  color: #fff !important;
}

.btn-dark:hover,
.btn-dark:focus {
  background-color: #696cff !important; /* un poco más oscuro */
  border-color: #696cff !important;
  color: #fff !important;
}

.btn-outline-dark {
  color: #696cff !important;
  border-color: #696cff !important;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: #696cff !important;
  border-color: #696cff !important;
  color: #fff !important;
}

