/* cookies.css */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;           
  background: #006F79;
  color: #fff;
  padding: 15px 20px;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
  z-index: 9999;
  gap: 15px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p { 
  margin: 0; 
  font-size: 14px; 
  flex: 1 1 auto; 
  min-width: 250px; 
}

.cookie-banner a { 
  color: #ffd966; 
  text-decoration: underline; 
  font-weight: bold; 
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner button {
  background: #4da6ff;
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
}

.cookie-banner button:hover { 
  background: #2d85e0; 
}


/* Media Queries */

/* Tablet */
@media (max-width: 992px) {
  .cookie-buttons {
    justify-content: flex-start; /* no big gaps when wrapping */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column; /* stack text + buttons vertically */
    align-items: flex-start; 
  }

  .cookie-buttons {
    width: 100%; 
    flex-direction: column; /* stack buttons vertically */
    gap: 8px; /* space between stacked buttons */
  }

  .cookie-buttons button {
    width: 100%; /* full width buttons on mobile */
    text-align: center;
  }
}