.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
}

.cookie-overlay.hidden {
  display: none;
}

.cookie-banner {
  background: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: sans-serif;
}

.cookie-banner__buttons {
 margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.btn.accept {
  background-color: #1b5e20; /* tmavší zelená */
  color: #ffffff;
}

.btn.decline {
  background-color: #b71c1c; /* tmavší červená */
  color: #ffffff;
}

.btn.accept:hover {
  background-color: #2e7d32; /* o něco světlejší při hoveru */
}

.btn.decline:hover {
  background-color: #c62828;
}

#cookie-reset-container {
  text-align: center;
  margin: 20px 0;
}

.cookie-reset {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}