.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    z-index: 999;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .cookie-banner p {
    margin: 0;
    flex: 1;
  }
  
  .cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 50px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 100%;
  }
  
  .cookie-banner button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .cookie-banner #acceptCookies {
    background-color: #ffcc00;
    color: #000;
  }
  
  .cookie-banner #acceptCookies:hover {
    background-color: #e6b800;
  }
  
  .cookie-banner .reject {
    background-color: #999;
    color: #fff;
  }
  
  .cookie-banner .reject:hover {
    background-color: #777;
  }
  