/* ============================
   BANNER COOKIES
============================ */

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background-color: #ffffff !important;
    line-height: 1.6;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 30%;
  min-width: 280px;
  max-width: 400px;
  background: #e9ecef !important;
  color: black !important;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 999999;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content p{
  margin: 0 0 12px 0;
  font-size: 15px !important;
}

.cookie-link {
    color: #0000EE !important;        /* azul clásico */
    text-decoration: none;  /* opcional: quita subrayado */
}


/* BOTONES */

.cookie-buttons{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-buttons button{
  padding: 7px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

#cookie-accept{
  background: #0d3b66 !important;
  color: white;
}

#cookie-accept:hover{
  background: #028ccc !important;
}

#cookie-reject{
  background: #e4e4e4 !important;
  color: #222 !important;
}

#cookie-reject:hover{
  background: #d4d4d4 !important;
}




