
.dropzone[data-v-79154946] {
  min-height: 10rem !important;
  background-color: rgba(var(--bg-secondary), 0.05);
  border-radius: 5px !important;
  border: dashed 2px rgba(var(--bg-secondary), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease !important;
}
.dropzone[data-v-79154946]:hover {
  color: var(--primary) !important;
  background-color: var(--primary-plus-transparent);
  border: dashed 2px var(--primary);
}
.content-drop[data-v-79154946] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.5rem;
}
.preview-container[data-v-79154946] {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 1rem;
  justify-content: center;
}
.image-preview img[data-v-79154946] {
  max-width: 100px;
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ccc;
}


/* Miniaturas */
.thumbnails-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
}
.thumbnail-wrapper {
  flex: 0 0 auto;
  width: 80px;
  height: 60px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border-color 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumbnail-wrapper.active,
.thumbnail-wrapper:hover {
  border-color: var(--primary);
}
.thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}

/* Ícono en miniatura */
.no-image-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-transparent);
  border-radius: 4px;
}
.no-image-thumb .circle {
  width: 50px;
  height: 50px;
  background-color: var(--primary-transparent);
  color: var(--primary);
}
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.image-container-prop {
  position: relative;
  border-radius: 5px;
  width: 12rem;
  height: 7rem;
  overflow: hidden;
  /* Oculta cualquier contenido que se desborde */
}
.image-portada-prop {
  position: relative;
  border-radius: 5px;
  width: 12rem;
  height: 7rem;
  overflow: hidden;
  /* Oculta cualquier contenido que se desborde */
}
.gallery-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  /* Transición suave para el zoom */
}
.image-container-prop:hover .gallery-image {
  transform: scale(1.1);
  /* Zoom suave al hacer hover */
}

/* Fondo rojo semitransparente y el ícono */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.6);
  /* Fondo semitransparente rojo */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Transición suave al aparecer */
}
.image-container-prop:hover .hover-overlay {
  opacity: 1;
  /* Aparece el fondo y el ícono al hacer hover */
}
.trash-icon {
  color: var(--white);
  /* Color del ícono */
  font-size: 2rem;
  /* Tamaño del ícono */
  pointer-events: none;
  /* Evita que interfiera con eventos del mouse */
}
.gap-3 {
  gap: 1rem;
  /* Espaciado uniforme entre los checkboxes */
}
@media (max-width: 576px) {
  /* Estilos para pantallas pequeñas */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.image-container-prop {
    position: relative;
    border-radius: 5px;
    width: 10rem;
    height: 5rem;
    overflow: hidden;
    /* Oculta cualquier contenido que se desborde */
}
.gallery-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
    /* Transición suave para el zoom */
}
}
@media (min-width: 576px) and (max-width: 768px) {
  /* Estilos para pantallas medianas */
}

