/* === COOKIE CONSENT STYLES === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d7e6e2;
  color: #2f2f2f;
  font-size: 14px;
  border-top: 1px solid #b7d1ca;
  z-index: 9999;
  padding: 10px 0;
}

.cookie-banner .btn {
  margin: 2px;
  font-size: 13px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.cookie-banner .btn-outline-primary {
  color: green;
  border-color: green;
}
.cookie-banner .btn-outline-primary:hover {
  background-color: green;
  color: #fff;
}

.cookie-banner .btn-success {
  background-color: #4d7d70;
  border-color: #4d7d70;
}
.cookie-banner .btn-success:hover {
  background-color: #3d675c;
}
.cookie-banner .btn-outline-secondary {
  color: #4d7d70;
  border-color: #4d7d70;
}
.cookie-banner .btn-outline-secondary:hover {
  background-color: #4d7d70;
  color: #fff;
}

.cookie-banner .btn-outline-danger {
  border-color: red;
  color: red;
}

.cookie-banner .btn-outline-danger:hover {
  background-color: red;
  color: #fff;
}


/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.cookie-modal-content {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px 30px;
  width: 90%;
  max-width: 420px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.4;
}
.hidden { display: none; }
.text-decoration-underline{ text-decoration: underline; }
