html, body {
  overflow-x: hidden;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  padding: 1rem;
  box-sizing: border-box;
}

.cookie-modal {
  background: #fff;
  max-width: 650px;
  width: 100%;
  margin: auto;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: 90%;
  overflow: hidden;
}

.cookie-scroll-content {
  overflow-y: auto;
  max-height: 70vh;
  padding: 2rem 1.5rem 1rem;
}

.cookie-header {
  text-align: center;
  margin-bottom: 1rem;
}

.cookie-actions {
  padding: 1rem;
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  min-width: 140px;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.btn-white {
  background: #fff;
  border: 1px solid #000;
}

.btn-black {
  background: #000;
  color: #fff;
}

.btn-link {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
}

.form-check {
  margin: 0.5rem 0;
}
