

.cookie-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  display: none;
}

.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  width: 92%;
  max-width: 420px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: none;
}

.cookie-banner p {
  font-size: 15px;
  color: #333;
  margin-bottom: 18px;
}



.button-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.button-row button,
.cookie-settings button {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #c80c1c;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}

.button-row button:hover,
.cookie-settings button:hover {
  background-color: #eaeaea;
  border-color: #999;
}

.button-row button:active,
.cookie-settings button:active {
  background-color: #ddd;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}



.cookie-settings {
  display: none;
  margin-top: 10px;
}

.cookie-settings label {
  display: block;
  font-size: 14px;
  color: black;
  margin-bottom: 6px;
}

.cookie-settings input[type="checkbox"] {
  margin-right: 6px;
}








.cookie-manage-button {
  border-radius: 4px;
  padding: 3px;
  background: white;
  color: #c80c1c;
  font-size: 13px;
  cursor: pointer;
  margin-top: 20px;
  border: none;
}
