/* Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 1em;
  display: none;
  z-index: 1000;
}
#cookie-banner .container {
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
}
#cookie-banner p {
  margin: 0;
  flex: 1 1 60%;
}
#cookie-banner button {
  background: #f5b412;
  color: #000;
  border: none;
  padding: 0.5em 1em;
  margin-left: 0.5em;
  cursor: pointer;
  font-weight: bold;
}
#cookie-banner button.secondary {
  background: #ccc;
}

/* Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#cookie-modal .modal-box {
  background: #fff;
  padding: 2em;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
#cookie-modal label {
  display: block;
  margin: 1em 0;
}
#cookie-modal input[type="checkbox"] {
  margin-right: 0.5em;
}
#cookie-modal .modal-footer {
  text-align: right;
  margin-top: 1em;
}



#cookie-banner .button-row {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  #cookie-banner .button-row {
    flex-direction: column;
    align-items: center;
  }
  #cookie-banner .button-row button {
    width: 100%;
    max-width: 300px;
  }
}
