.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E8EFFC;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  z-index: 9999;
  max-width: 90%;
  font-family: 'Neue Haas Unica', sans-serif;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 15px;
  color: #002266;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-buttons button,
.cookie-buttons a {
  border: none;
  border-radius: 24px;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Neue Haas Unica', sans-serif;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

#cookie-accept {
  background-color: #0044A6;
  color: white;
}
#cookie-accept:hover {
  background-color: #0058d3;
}

#cookie-decline {
  background-color: white;
  color: #0044A6;
}
#cookie-decline:hover {
  background-color: #c7ddfc;
}

.cookie-buttons a {
  background-color: #0044A6;
  color: white;
}
.cookie-link:hover {
  background-color: #0058d3;
}

/* MEDIA QUERY: Mobile First */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .cookie-text {
    font-size: 14px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
    text-align: center;
  }
}
