.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
  }

  .cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
  }

  .cookie-banner a {
    color: blue;
    text-decoration: none;
  }

  .cookie-banner a:hover {
    text-decoration: underline;
  }

  .cookie-banner button {
    background-color: blue;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 3px;
  }

  .cookie-banner button:hover {
    background-color: darkblue;
  }
