.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50__, 20px);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  color: inherit;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-content a {
  color: #81b367;
  text-decoration: underline;
}
.cookie-content a:hover{
  text-decoration: none;
}
.cookie-btn {
  background-color: #ffffff;
  color: #1a1a1a;
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cookie-btn:hover {
  background-color: #e0e0e0;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-btn {
    width: 100%;
  }
}