#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #050a32;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 1000;
  height: auto;
  max-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Open Sans', sans-serif;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.cookie-content p {
  margin: 0;
  max-width: 90%;
  line-height: 1.5;
}

.cookie-content a {
  color: #33ccff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#accept-cookies {
  background-color: #00b4ff;
  color: #050a32;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.privacy-link {
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1024px;
    margin: 0 auto;
  }

  .cookie-content p {
    flex: 0 0 75%;
    text-align: left;
  }

  .cookie-buttons {
    flex: 0 0 25%;
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .cookie-content p {
    max-width: 90%;
    margin-bottom:20px;
  }
}
