
  /* ===== 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 {
  padding: .25rem .45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon i {
  font-size: 0.8rem;
}

.btn-icon:hover {
  background-color: #f1f3f5;
}


/* ===== 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;
  }

  .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;
}

