/* Estilos para el banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  padding-right: 1rem;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #4CAF50;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.accept-cookies {
  background: #4CAF50;
  color: white;
}

.accept-cookies:hover {
  background: #45a049;
}

.reject-cookies {
  background: #f44336;
  color: white;
}

.reject-cookies:hover {
  background: #da190b;
}