.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 0 0 1px #dee2e6;
  transition: transform 0.2s ease;
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

.avatar-group .avatar:hover {
  transform: scale(1.05);
  z-index: 2;
}

.avatar-group .avatar-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #adb5bd;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-left: -10px;
  box-shadow: 0 0 0 1px #dee2e6;
}

/* Fondos transparentes reutilizables */

.bg-success-transparent {
  background-color: rgba(25, 135, 84, 0.2);
  /* Verde Bootstrap */
}

.bg-danger-transparent {
  background-color: rgba(220, 53, 69, 0.2);
  /* Rojo Bootstrap */
}

.bg-warning-transparent {
  background-color: rgba(255, 193, 7, 0.25);
  /* Amarillo Bootstrap */
}

.bg-info-transparent {
  background-color: rgba(13, 202, 240, 0.2);
  /* Celeste Bootstrap */
}

.bg-primary-transparent {
  background-color: rgba(13, 110, 253, 0.2);
  /* Azul Bootstrap */
}

.bg-secondary-transparent {
  background-color: rgba(108, 117, 125, 0.2);
  /* Gris Bootstrap */
}

.bg-dark-transparent {
  background-color: rgba(33, 37, 41, 0.2);
  /* Oscuro */
}

.bg-light-transparent {
  background-color: rgba(248, 249, 250, 0.5);
  /* Claro */
}

/* Opcional: bordes suaves para acompañar */
.border-transparent {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.h-32 {
  height: 32px;
}

.h-42 {
  height: 42px;
}

.h-48 {
  height: 48px;
}

.h-50 {
  height: 50px;
}

.h-52 {
  height: 52px;
}

.h-55 {
  height: 55px;
}

.h-58 {
  height: 58px;
}

.h-64 {
  height: 64px;
}

.h-120 {
  height: 120px;
}

.wh-35 {
  width: 35px;
  height: 35px;
}

.wh-30 {
  width: 30px;
  height: 30px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
  /* Color claro para filas impares */
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 175px;
}

.font-18 {
  font-size: 18px;
}

.font-19 {
  font-size: 19px;
}

.bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--bs-body-bg);
  border-top: 1px solid var(--bs-border-color-translucent);
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.05);
  z-index: 1050;

  .navbar {
    height: 100%;
    padding: 0 1rem;
    background-color: transparent;

    a {
      flex: 1;
      text-align: center;
      text-decoration: none;
      color: var(--bs-body-color);
      font-size: 0.85rem;

      i {
        display: block;
        font-size: 1.4rem;
        margin-bottom: 4px;
      }

      &.text-primary {
        color: var(--bs-primary) !important;
      }

      &.text-danger {
        color: var(--bs-danger) !important;
      }

      &:hover {
        color: var(--bs-primary);
      }
    }
  }
}

/* Estilo adaptado a layout con menú inferior */
.main-wrapperOK {
  min-height: 100vh;
  padding-bottom: 75px;
  /* altura del footer menu inferior */
  padding-top: 20px;
  overflow-y: auto;
  background-color: #f8f9fa;
  /* color de fondo suave */
}

/* Evitar solapamiento en pantallas grandes */
@media (min-width: 768px) {
  .main-wrapperOK {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .sidebar-wrapper {
    display: none !important;
  }
}

.topHeaderOK {
  background-color: #0c0c5c;
  box-shadow: none;

  .navbar {
    background-color: transparent;
    padding: 0.75rem 1rem;

    .nav-link,
    .btn-toggle {
      color: var( #d3d7dc);
      text-decoration: none;
    }

    .nav-link:hover,
    .btn-toggle:hover {
      color: var(#0d6efd);
    }
  }

  .dropdown-menu {
    border: 1px solid var( rgba(0, 0, 0, 0.175));
    background-color: var(#fff);
  }

  .dropdown-menu::after {
    background: var(#fff);
    border-top: 1px solid var(#495057);
    border-left: 1px solid var(#495057);
  }
}