.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }

  input:disabled + .slider {
    background-color: #64717b;
    cursor: not-allowed;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* półprzezroczyste ciemne tło */
    backdrop-filter: blur(5px);  /* robi blur całej strony w tle */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* Samo okno cookies */
  .cookie-modal {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 10px;
  }

  .cookie-type-title {
    width: 100%;
  }

  .cookie-short-desc {
    width: 70%;
  }

    .cookie-desc-slider-holder {
      display: flex;
      justify-content: space-between;
    }

    .cookie-type {
        width: 100%;
        border: 1px solid #000000;
        border-radius: 5px;
        padding: 5px;
        text-align: left;
    }

    #accept-cookies {
        width: 100%;
        background-color: #2196F3;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }

    #accept-cookies:hover {
        background-color: #0b7dda;
    }

    #save-cookies {
        width: 50%;
        background-color: #64717b;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        color: white;
    }

    #save-cookies:hover {
        background-color: #4b545d;
    }

    #deny-cookies {
        width: 50%;
        background-color: #64717b;
        color: white;
        padding: 10px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
    }

    #deny-cookies:hover {
        background-color: #4b545d;
    }

    #cookie-buttons {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }
