
#cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  color: #000000;
  padding: 24px;
  z-index: 1000;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", Arial, sans-serif;
  animation: slide-up 0.5s ease-out;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.consent-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  gap:20px;
  align-items: center;
  justify-content: space-between;
}

#cookie-consent-banner h2 {
  margin: 0 0 12px;
  font-size: 1.75em;
  color: #000000;
  font-weight: bold;
}

#cookie-consent-banner p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
  color: #000000;
}
.cookie-txt{
    flex-basis: 80%;
}
.consent-actions {
  /* display: flex;
  justify-content: center;
  gap: 12px; */
  display: block;
  text-align: right;
  flex-basis: 20%;
}

#cookie-consent-banner button {
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
    margin-bottom: 0;
}

#accept-cookies {
  background-color: #213255;
}

#accept-cookies:hover {
  background-color: #333333;
}

#cookie-consent-banner #reject-cookies {
  background: #fff;
  border:2px solid #213255;
  color: #000;
}

#cookie-consent-banner #reject-cookies:hover {
  background: #eee;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 16px;
  }

  .consent-actions button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  .consent-content {
  text-align: center;
  display: block;
}

  .consent-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-direction: row;
}

#cookie-consent-banner button {
    padding: 12px 24px;
    font-size: 14px;
    margin-bottom: 10px;
    width: fit-content;
}
#cookie-consent-banner p {
    line-height: 1.4;
    font-size: 14px;
}
#cookie-consent-banner h2 {
    font-size: 20px;
}
}
