body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}
.download-organizer {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.download-organizer h1 {
    text-align: center;
    color: #5a67d8;
}

.download-button {
    display: block;
    width: 68%;
    padding: 10px;
    background-color: #5a67d8;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 58px;
    margin: 40px auto;
}

.download-button:hover {
    background-color: #919bf8;
    scale: 1.03;
    transition: all 0.1s;
}

label, select {
    display: block;
    width: 100%;
    margin-top: 20px;
}
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
}
.video-container {
    margin-top: 20px;
}

.hidden {
    display: none;
}


#documents iframe {
    height: 640px !important;
}


#category-image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

#category-image-container img {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

#documents   {
    overflow: auto;
    width: 100%;
    height: 100vh; 
  }

  iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: auto;
  }


  @supports (-webkit-overflow-scrolling: touch) {
    iframe {
      -webkit-overflow-scrolling: touch; 
    }
  }