.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0d2818;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 14px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .cookie-buttons button {
    margin: 5px;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    background: #fbbc05;
    color: black;
    cursor: pointer;
    font-weight: bold;
    max-width: 150px;
    white-space: nowrap;
  }
  .cookie-settings {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    max-width: 300px;
    z-index: 1001;
  }
  .hidden {
    display: none;
  }


  .cookie-settings h3 {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .cookie-settings label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }
  
  .cookie-settings button {
    margin-top: 10px;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    background: #fbbc05;
    color: black;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .cookie-settings label i {
    font-size: 16px;
    color: #0d2818;
  }
  
  .cookie-banner a {
    color: #fbbc05; /* Žltá farba odkazu */
    font-weight: bold; /* Zvýraznenie textu */
    text-decoration: underline; /* Podčiarknutie */
    transition: color 0.3s ease-in-out;
  }
  
  .cookie-banner a:hover {
    color: #ffcc33; /* Svetlejšia farba pri hover */
    text-decoration: none; /* Odstránenie podčiarknutia pri hover */
  }

  .cookie-buttons {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap; /* Ak nie je miesto, tlačidlá sa zalomia */
    gap: 10px; /* Odstupy medzi tlačidlami */
    justify-content: flex-end; /* Tlačidlá budú vpravo */
    max-width: 50%; /* Zabezpečí, že tlačidlá nebudú príliš široké */
}