.cookie-lock {
  overflow: hidden;
}

#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9998; /* abaixo do banner (9999) e do modal (10000) */
  display: none;
}
/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00010f;
  color: #fff;
  padding: 16px;
  z-index: 9999999999;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.cookie-banner-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

#accept-all {
  background-color: #4caf50;
  color: white;
}

#open-preferences, #save-preferences {
  background-color: #292929;
  color: white;
}

/* Modal Styles */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.cookie-modal-content {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  color: black;
  font-family: sans-serif;
}

.cookie-modal-content h2 {
  margin-top: 0;
}

.cookie-modal-content label {
  display: block;
  margin-bottom: 8px;
}
