@charset "UTF-8";
	.cookie-banner {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
}

.cookie-banner.show {
  display: flex;
}

.cookie-box {
  width: 100%;
  max-width: 520px;
  background: rgba(30, 30, 30, 0.95);
  color: #fff;
  padding: 20px;
  border-radius: 16px 16px 0 0;
  font-family: Arial, sans-serif;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
}

.cookie-box h3 {
  margin-top: 0;
}

.cookie-box p {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.cookiebtn {
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.accept {
  background: rgba(48, 86, 83, 0.7);
  color: white;
}

.reject {
  background: rgba(84, 34, 2, 0.7);
  color: white;
}

/* Desktop */
@media (min-width: 768px) {
  .cookie-banner {
    align-items: center;
  }

  .cookie-box {
    border-radius: 16px;
  }

  .cookie-buttons {
    flex-direction: row;
  }

  .cookie-btn {
    flex: 1;
  }
}