/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.tag-button {
  width: 100%;
  padding: 15px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #000;
  text-align: left;
  transition: all 0.3s ease;
}

.tag-button:hover {
  background-color: #e0e0e0;
}

.tag-button.is-active {
  background: linear-gradient(to right, #0f0f39, #27aae1);
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(39, 170, 225, 0.3);
}

.tag-button:not(:last-child) {
  margin-bottom: 10px;
}

.buttons.is-flex-direction-column {
  gap: 0;
}

.buttons.is-flex-direction-column {
  gap: 0;
}

#tag-image {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.loader.is-loading {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #0f0f39;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-text {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.fade-text.show {
  opacity: 1;
}

.box.no-shadow {
  box-shadow: none;
  border: 1px solid #dbdbdb; /* opcional: mantiene el borde */
}

.custom-gradient-button {
  background: linear-gradient(to right, #0f0f39, #27aae1);
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(39, 170, 225, 0.3);
  border: none;
}
.custom-gradient-button:hover {
  filter: brightness(1.05);
}
