#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f9fa;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
}

#cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

#cookie-banner a {
  color: #0066cc;
  text-decoration: underline;
}

#cookie-banner .buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#cookie-banner button {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  flex: 1;
  min-width: 120px;
}

#accept-cookies {
  background-color: #28a745;
  color: white;
}

#reject-cookies {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd !important;
}

/* Estilos para móviles */
@media (max-width: 768px) {
  #cookie-banner {
    padding: 12px;
  }
  
  #cookie-banner p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  #cookie-banner button {
    padding: 8px 12px;
    font-size: 14px;
    min-width: 100px;
  }
  
  #cookie-banner .buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* Estilos para pantallas muy pequeñas */
@media (max-width: 480px) {
  #cookie-banner p {
    font-size: 12px;
  }
  
  #cookie-banner button {
    width: 100%;
  }
}