.cookie-consent-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-color: #ffffff;
    border-top: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }

  .cookie-consent-content {
    max-width: 90%;
  }

  .cookie-consent-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #212121;
  }

  .cookie-consent-text {
    color: #212121;
    margin-bottom: 10px;
  }
button{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 5px 10px;
  font-size: 16px;
}
.cookie-consent-buttons {
  display: flex;
  gap: 10px;
}

  .cookie-consent-button {
    cursor: pointer;
    border: 1px solid #007B91;
    color: #007B91;
    background-color: #06BBCC;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  .cookie-consent-button:hover {
    background-color: #007B91;
    color: #ffffff;
  }
  .reject-consent-button{
    background-color: lightgray;
    border: 1px solid darkgray;
    text-decoration: none;
    padding: 5px 0 0 10px;
    content: center;
  }
  .reject-consent-button:hover {
    content: center;
    background-color: darkgray;
    border: 1px solid darkgray;
    padding: 5px 0 0 15px;
    text-decoration: none;
  }
  .cookie-banner{
    background-color: #06BBCC;
  }

  .form-check-input{
    cursor: pointer;
  }

  .consent-model-decor{
    text-decoration: underline;
  }