/* Contenedor principal del toast */
.toast-container {
  position: fixed;
  top: 1% ;
  right: 20px ;
  width: 320px;
  z-index: 1055;
}

  /* Estilos base del toast */
  .toast {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    overflow: hidden;
  }
  
  /* Header del toast */
  .toast-header {
    padding: 0.3rem 1rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Cuerpo del toast */
  .toast-body {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
  }
  
  /* Icono dentro del toast */
  .toast-icon {
    font-size: 28px;
    flex-shrink: 0;
  }
  
  /* Botón de cerrar */
  .toast-close {
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 4px;
  }
  
  .toast-close:hover {
    opacity: 1;
  }
  
  .toast-close .ion-close {
    font-size: 19px;
  }
  
  /* Barra de progreso */
  .toast-progress {
    height: 4px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .toast-progress-bar {
    height: 100%;
    width: 100%;
    transition: width 5s linear;
  }
  
  /* Variantes de toast */
  /* Warning */
  .toast-warning {
    border-left: 4px solid #f59e0b;
  }
  
  .toast-warning .toast-header {
    border-bottom-color: #f59e0b;
    color: #b45309;
  }
  
  .toast-warning .toast-icon {
    color: #f59e0b;
  }
  
  .toast-warning .toast-progress-bar {
    background-color: #f59e0b;
  }

  .toast-container .toast.toast-warning {
    position: relative; /* Asegúrate de que no esté usando otra posición por un estilo heredado */
}

  
  /* para alerta del dato */
  .alert-warning{
    background-color: #ffdc72; /* Naranja */
    color: #1f2d3d; /* Texto blanco */
  }
  
  /* Éxito */
  .toast-success {
    border-left: 4px solid #22c55e;
  }
  
  .toast-success .toast-header {
    border-bottom-color: #22c55e;
    color: #15803d;
  }
  
  .toast-success .toast-icon {
    color: #22c55e;
  }
  
  .toast-success .toast-progress-bar {
    background-color: #22c55e;
  }
  
  /* Error */
  .toast-error {
    border-left: 4px solid #ef4444;
  }
  
  .toast-error .toast-header {
    border-bottom-color: #ef4444;
    color: #b91c1c;
  }
  
  .toast-error .toast-icon {
    color: #ef4444;
  }
  
  .toast-error .toast-progress-bar {
    background-color: #ef4444;
  }
  
  /* Info */
  .toast-info {
    border-left: 4px solid #3b82f6;
  }
  
  .toast-info .toast-header {
    border-bottom-color: #3b82f6;
    color: #1d4ed8;
  }
  
  .toast-info .toast-icon {
    color: #3b82f6;
  }
  
  .toast-info .toast-progress-bar {
    background-color: #3b82f6;
  }
  /* estilo para cuando se seleccione un elemento de una tabla */
  .selected {
        background-color: #BEEFC8;
    }

    /* Cambia el color base del checkbox */
    .form-check-input {
      accent-color: #37954b; /* Color del borde y del fondo */
      width: 20px; /* Ancho del checkbox */
      height: 20px; /* Alto del checkbox */
    }
  
    /* Modifica específicamente la marca (✔) cuando está seleccionada */
    .form-check-input:checked::before {
      /* content: '✔'; Marca personalizada */
      display: inline-block;
      font-size: 18px; /* Tamaño de la marca */
      color: #ffffff; /* Color de la marca */
      position: absolute;
      top: 0;
      left: 5px; /* Ajusta la posición dentro del checkbox */
    }

  .status {
      width: 20px;
      height: 20px;
      border-radius: 50%;
  }
  /* .active { background-color: green; }
  .inactive { background-color: yellow; }
  .baja { background-color: red;} */


.resaltado a {
  background-color: #28a745 !important; /* Verde */
  color: white !important;
  border-radius: 50%;
}

.card-title-large {
  font-size: 1.3rem;
}
