@charset "utf-8";

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    display: none;
    z-index: 1000;
  }

  .cookie-banner a {
    color: #4eaaff;
    text-decoration: underline;
  }

  .cookie-buttons {
    margin-top: 10px;
  }

  .cookie-buttons button {
    margin: 0 10px;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  #accept-necessary {
    background-color: #666;
    color: white;
  }

  #accept-all {
    background-color: #4eaaff;
    color: white;
  }