
/* Hide the scrollbar but still allow scrolling */
html, body {
  overflow: auto; /* Enable scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera */
}


  /* General Styles */
  body {
    background-color: yellow; /* Background color for the body */
  }

  * {
    box-sizing: border-box; /* Apply box-sizing to all elements */
  }

  a {
    color: white;
    text-decoration: none;
  }

  p {
    font-family: Roboto;
    line-height: 25px;
  }

  h2 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 40px 0 20px;
    padding-top: 20px;
    text-align: center;
    font-family: Roboto;
  }

  h3 {
    font-family: Roboto;
    letter-spacing: 1px;
  }

  ul {
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
    text-align: left;
    font-size: 20px;
  }

  /* Container Styles */
  .container {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 10px;
  }

  .containerpolicy {
    background: black;
  }

  /* Banner and Footer Styles */
  .banner, .footer, .logreg, .privcomp, .welcome {
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    border-radius: 3px;
    font-family: Roboto, sans-serif;
    margin-top: 5px;
    border: 1px solid #e0e0e0;
  }

  .banner {
    background-color: black;
    color: white;
    font-size: 22px;
  }

  .footer {
    background-color: black;
    color: white;
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .logreg {
    background-color: black;
    color: white;
    text-align: right;
    font-size: 0.9rem;
    height: 40px;
  }

  .privcomp {
    background-color: #F0F0F0;
    color: black;
    font-size: 0.9rem;
  }

  .welcome {
    background-color: #99CCCC;
    color: black;
    font-size: 22px;
  }

  /* Collapsible List Styles */
  .collapsible-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .collapsible-item {
    margin: 10px 0;
    padding: 1px;
    border: 1px solid lightgrey;
    border-radius: 5px;
  }

 .collapsible-header {
      font-family: Roboto;
      font-size: 16px;
      cursor: pointer;
      padding: 2px 10px;
      background-color: #F0F0F0;
      color: black;
      border-radius: 5px;
      margin: 0;
      display: flex;
      align-items: center;
      text-align: left;
      letter-spacing: 1px;
      justify-content: space-between;
      transition: background-color 0.3s ease;
    }

   .collapsible-header::after {
      content: "▼";
      font-size: 10px;
      margin-left: 10px;
      transition: transform 0.3s ease-in-out;
      color: grey;
    }

    .collapsible-header.expanded::after {
      transform: rotate(180deg);
    }

  .collapsible-content {
    padding: 10px;
    background-color: white;
    display: none;
    border-top: 1px solid #ddd;
    margin-top: 5px;

  }

  /* Button Styles */
  .button {
    padding: 5px 15px;
    margin: 5px;
    background-color: white;
    color: black;
    border: 1px solid #4CAF50;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 120px;
  }

  .button:hover {
    background-color: transparent;
  }

  .button.play-btn {
    color: white;
  }

  .button.stop-btn {
    color: red;
  }

  .button-text {
    margin-right: 10px;
    font-size: 14px;
    color: black;
  }

  .button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .button.accept, .button.decline {
    background-color: blue;
    color: white;
  }

  /* Overlay and Scrollable Content Styles */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-family: Roboto;
  }

  .scrollable-content {
    height: 350px;
    overflow: hidden;
    position: relative;
    width: 400px;
    padding: 15px;
    background: white;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .scrollable-content-inner {
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px;
    position: absolute;
    width: calc(100% - 30px);
    background: white;
    box-sizing: border-box;
  }

  /* Media Queries */
  @media (max-width: 600px) {
    .button {
      font-size: 13px;
      padding: 5px 12px;
      min-width: 100px;
    }

    .button-text {
      font-size: 13px;
      color: blue;
    }
  }

  @media (min-width: 601px) {
    .banner {
      font-size: 22px;
    }
  }
#divwelcome {
line-height: 45px; 
text-align: left;
}
