.file-search-wrapper {
  width: 30%;
}

#fileSearchInput {
  width: 100%;
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
    pointer-events: none; /* Prevent clicks behind modal */
}

#fileViewerContent video,
#fileViewerContent iframe {
  width: 100%;
  max-height: 95%;
  display: block;
  margin-top: 1rem;
}

.pdf-viewer {
  width: 100%;
  max-height: 100% !important;
  display: block;
}

.progress-container {
  width: 100%;
  height: 8px;
  background-color: #101010;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #eaaa02;
  transition: width 0.2s ease;
}

