/* Prefijo específico para evitar conflictos */
.cookie-popup {
  font-family: 'Arial', sans-serif;
}

/* Estilos del pop-up de cookies */
.cookie-popup .cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.cookie-popup .cookie-consent.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-popup .cookie-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-popup .cookie-message p {
  margin: 0;
  flex: 1 1 70%;
  font-size: 16px; /* Asegura que el texto sea consistente */
}

.cookie-popup .btn {
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px; /* Asegura que el texto de los botones sea consistente */
}

.cookie-popup .accept-btn {
  background-color: #007bff;
}

.cookie-popup .accept-btn:hover {
  background-color: #0056b3;
}

.cookie-popup .policy-btn {
  background-color: #6c757d;
}

.cookie-popup .policy-btn:hover {
  background-color: #5a6268;
}

/* Diseño responsive */
@media (max-width: 768px) {
  .cookie-popup .cookie-consent {
      bottom: 10px;
      left: 10px;
      right: 10px;
      padding: 10px;
  }

  .cookie-popup .cookie-message {
      flex-direction: column;
      text-align: center;
  }

  .cookie-popup .cookie-message p {
      margin-bottom: 10px;
  }

  .cookie-popup .btn {
      width: 100%;
      margin: 5px 0;
  }
}
