  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
    font-size: 0.9em;
    z-index: 9999;
    display: none;
  }

  #cookie-banner a {
    color: #80d4ff;
    text-decoration: underline;
  }

  #cookie-banner button {
    margin-left: 1em;
    padding: 0.5em 1em;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  @media (max-width: 600px) {
    #cookie-banner {
      font-size: 0.8em;
      padding: 1em 0.5em;
    }

    #cookie-banner button {
      margin-top: 0.5em;
      display: block;
      width: 100%;
    }
  }