.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: all 0.4s ease-in-out;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-banner.hidden {
  bottom: -100px;
  opacity: 0;
  pointer-events: none;
}

.cookie-content p {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

code {
  color: #00ff9d;
  background: #2a2a2a;
  padding: 2px 5px;
  border-radius: 4px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
}

.btn-primary {
  background: #00ff9d;
  color: #000;
}
.btn-primary:hover {
  background: #00cc7e;
}

.btn-secondary {
  background: #333;
  color: #fff;
}
.btn-secondary:hover {
  background: #444;
}

.policy-link {
  color: #aaa;
  text-decoration: underline;
  font-size: 0.8rem;
}

/* cookie banner privcy policy */
.privacy-policy-container {
  width: 90%;
  margin: 0 auto;
  border: 1px solid grey;
  padding: 10px;
  margin-top: 20px;
  background-color: beige;

  a {
    color: darkcyan;
    text-decoration: none;
  }
  a:hover {
    color: #00cc7e;
  }

  .privacy-container {
    font-size: 1rem;
    height: 850px;
    overflow: auto;

    @media screen and (max-width: 450px) {
      font-size: 2rem;
      height: 1200px;
    }
  }
}
/* */
