.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e1e;
  color: white;
  padding: 0px 20px 30px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
  min-width: 200px;
  display: block;
  opacity: 0;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.cookie-content h3 {
  color: var(--white);
  margin-bottom: 0px;
}

.cookie-buttons{
    display: flex;
    justify-content: center;
    width: 80%;
}

.btn {
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
}

#modal-save {
    width: 60%;
}
#modal-accept {
    width: 60%;
}
#modal-reject {
    width: 60%
}

.btn.primary {
  background: var(--orange);
  color: white;
}

.btn.secondary {
  background: #444;
  color: white;
}

.cookie-category-header h4 {
    margin-bottom: 0px;
}

.switch {
    padding-right: 10px;
}

.cookie-category-content {
    display: flex;
    align-items: center;
}

.cookie-status {
    padding-top: 14px;
    padding-bottom: 10px;
}