
.cookie-backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  display: none;
}

.cookie-backdrop.show {
  display: block;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 480px;
  background-color: #2e2e2e;
  color: #fff;
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 1.6;
  z-index: 99999;
}

.cookie-floating-btn {
  position: fixed;
  bottom: 10px;
  left: 20px;
  background-color: #2e2e2e;
  color: white;
  border: 1px solid #2196f3;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

.cookie-floating-btn:hover {
  background-color: #2196f3;
}

.cookie-popup p {
  margin: 0 0 16px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  transition: 0.3s ease;
}

.btn.settings {
  border: 1px solid #888;
  background-color: #2e2e2e;
}
.btn.settings:hover {
  background-color: #3a3a3a;
}

.btn.accept {
  background-color: #2e2e2e;
  border: 1px solid #2196f3;
  box-shadow: inset 0 0 0 1px #2196f3;
}
.btn.accept:hover {
  background-color: #2196f3;
  color: #fff;
}
.btn.decline:hover{
    color: #fff;
}
.btn.decline {
  border: 1px solid #888;
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  padding: 0px 8px 1px 7px;
  border: none;
  font-size: 18px;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* body.lock-scroll {
  overflow: hidden;
} */
