#consent-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f8f8;
    color: #333;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    box-sizing: border-box;
  }

  #consent-popup p {
    margin-bottom: 15px;
  }

  #preferences-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    text-align: left;
  }

  #preferences-modal h2 {
      color: #333;
    margin-top: 0;
    margin-bottom: 15px;
  }



  #preferences-list label {
    color: #333;
  }

  #preferences-list label {
    display: block;
    margin-bottom: 10px;
  }

  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }