.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-box {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cookie-box h2 {
  margin-bottom: 10px;
}

.cookie-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.accept {
  background: #2ecc71;
  color: #fff;
}

.decline {
  background: #e74c3c;
  color: #fff;
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
  color: #000 !important;
}

/* REMOVE qualquer estilo padrão do browser/tema */
.cookie-actions button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  box-shadow: none;
}

/* TRAVA cores no hover / focus / active */
.cookie-actions button:hover,
.cookie-actions button:focus,
.cookie-actions button:active {
  background-color: inherit !important;
  color: inherit !important;
}

/* Garante que Accept não mude */
.cookie-actions .accept:hover,
.cookie-actions .accept:focus,
.cookie-actions .accept:active {
  background: #2ecc71 !important;
  color: #fff !important;
}

/* Garante que Decline não mude */
.cookie-actions .decline:hover,
.cookie-actions .decline:focus,
.cookie-actions .decline:active {
  background: #e74c3c !important;
  color: #fff !important;
}
