@charset "utf-8";

#consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85); /* Malo tamnije za bolji fokus */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000; /* Da bude iznad svega */
}

.consent-box {
  background: #222;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 450px;
  color: #fff;
  font-family: sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.consent-box p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.consent-box a {
  color: #4CAF50;
  text-decoration: underline;
}

.consent-box button {
  margin-top: 10px;
  padding: 12px 30px;
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.consent-box button:hover {
  background: #45a049;
}
