#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}

#cookie-consent-message {
  background-color: transparent;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-consent-message p {
  margin-bottom: 10px;
  color: white;
  flex: 1;
}

#cookie-consent-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 10px;
}

#cookie-consent-buttons button {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  color: white;
  font-weight: 700;
  margin-left: 10px;
}

#cookie-accept {
  background-color: #058283;
}

#cookie-decline {
  background-color: #058283;
}

@media screen and (max-width: 480px) {
  #cookie-consent-message {
    font-size: 14px;
    flex-direction: column;
    align-items: center;
  }

  #cookie-consent-buttons {
    margin-top: 10px;
    margin-left: 0;
  }

  #cookie-consent-buttons button {
    margin-left: 0;
  }
}

    
    