.box-client-info {
  display: none;
}

/* Contenedor principal con diseño tipo tabla */
.clientes-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: center;
  text-align: left;
  padding: 10px;
  background-color: #f8f9fa;
  font-weight: bold;
  border-radius: 5px;
}

/* Estilos de cada fila */
.cliente-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.cliente-card {
  background: #fff;
  padding: 10px;
  transition: background 0.3s ease;
}

/* Alternar colores: blanco y gris claro */
.cliente-card:nth-child(even) {
  background: #f2f2f2;
}

/* Ocultar títulos en PC */
.cliente-label {
  display: none;
  font-weight: bold;
  color: #555;
}

/* Opciones de botones */
.cliente-options {
  display: none;
  justify-content: center;
  gap: 10px;
}

.cliente-options a {
  text-decoration: none;
}

/* Badges de estado */
.badge {
  padding: 5px 10px;
  border-radius: 5px;
}

.badge-success {
  background-color: #28a745;
  color: white;
}

.badge-info {
  background-color: #17a2b8;
  color: white;
}

/* 📱 RESPONSIVE DESIGN 📱 */
@media (max-width: 1024px) {
  /* TABLETS */
  .clientes-container {
    grid-template-columns: repeat(2, 1fr);
    font-size: 14px;
  }

  #clientsdelete {
    display: none;
  }

  .cliente-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cliente-label {
    display: block;
    text-align: center;
  }

  .cliente-label-2 {
    display: inline;
  }

  .cliente-options {
    display: flex; /* Mostrar títulos en tablets */
  }
}

@media (max-width: 768px) {
  /* CELULARES */
  .clientes-container {
    display: none; /* Ocultar cabecera en móviles */
  }

  .cliente-card {
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

  .cliente-row {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .cliente-options {
    justify-content: flex-start;
  }
}

.bg-danger-estado {
  background-color: #ffebeb;
}

.btn-primary {
  background-color: #090830 !important;
  border-color: #090830 !important;
}

.text-primary {
  color: #090830 !important;
}

.bg-warning-seg {
  background-color: #f7f7d5;
}

.bg-danger-seg {
  background-color: #f7d5d5;
}

.servicio-tab {
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 20px;
  background: #e9ecef;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 600;
}

.servicio-tab.active {
  background: #007bff;
  color: #fff;
}

.servicio-card {
  cursor: pointer;
  border: 2px solid #ccc;
  transition: all 0.2s ease-in-out;
  height: 100%;
}

.servicio-card:hover {
  border-color: #007bff;
  transform: translateY(-2px);
}

.servicio-card.selected {
  border-color: #007bff;
  background-color: #f0f8ff;
}
