.dataTables_wrapper tr td {
  white-space: nowrap;
}

.btnCambiosCR {
  position: fixed;
  bottom: 12%;
  left: 50%;
  transform: translateY(50%);
  padding: 10px 20px;
  /* background-color: #007bff; */
  /* color: #fff; */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
  background-color: rgb(248, 171, 171);
}

/* tamaño de miniatura para imágenes y vídeos */
.preview-thumb {
  width: 80px; /* ajústalo al tamaño que quieras */
  height: auto;
  margin: 4px; /* un pequeño espacio alrededor */
  object-fit: cover; /* centra el recorte si es necesario */
  border: 1px solid #ccc;
  border-radius: 4px;
}

.container-components-1,
.container-components-2 {
  padding: 5px;
}

#whatsappLoading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(
    255,
    255,
    255,
    0.7
  ); /* opcional: fondo semitransparente */
  z-index: 9999;
}

.spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block; /* Para que esté en línea con el texto si lo deseas */
  vertical-align: middle; /* Alineación vertical */
  margin-right: 5px; /* Espacio entre spinner y texto */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .container-components-2-image-1,
  .container-components-2-image-2 {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .container-components {
    display: flex;
    flex-direction: column;
  }

  .container-components-1,
  .container-components-2 {
    width: 100% !important;
  }

  .container-components-2-image-1,
  .container-components-2-image-2 {
    width: 90%;
  }
}

@media (max-width: 425px) {
  .container-orderForm {
    display: flex;
    flex-direction: column;
  }
  .container-orderForm-obs {
    display: flex;
    flex-direction: column;
  }
  .container-orderForm-obs img {
    width: 280px;
  }
  #observaciones {
    margin-top: 5px;
  }
}