/* Common Modal Start */
body .common-modal {
  display: none;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: 0 4px 6px rgba(31, 41, 55, 0.1), 0 2px 4px rgba(31, 41, 55, 0.06);
  border-radius: 0.375rem;
  overflow: hidden;
  z-index: 1100;
  resize: both;
  flex-direction: column;
  scrollbar-width: thin;
  max-width: calc(100% - 90px) !important;
}

.dark .common-modal {
  background-color: #1f2937;
  border: 1px solid #4b5563;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
}

.common-modal-header {
  cursor: default !important;
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  cursor: move;
  background-color: #f3f4f6;
}

.dark .common-modal-header {
  border-bottom: 1px solid #374151;
  background-color: #374151;
}

.common-modal-content {
  flex-grow: 1;
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 #e2e8f0;
  overflow: auto;
  padding: 10px;
  max-height: calc(100% - 40px) !important;
}

.dark .common-modal-content {
  scrollbar-color: #475569 #1e293b;
}

.common-modal-icons i.fa-window-minimize::before {
  position: absolute;
  top: 7px;
  transform: translateX(-50%);
}
.common-modal-heading {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.common-modal-download {
  margin-left: 1.875rem;
}

.common-modal table {
  border-collapse: collapse !important;
  border-top: 1px solid #cbd5e1;
  width: 100% !important;
}

@media (prefers-color-scheme: dark) {
  .common-modal table {
    border-top: 1px solid #475569;
  }
}

#upload-file-table {
  overflow-x: auto;
  width: 100%;
  margin-top: 4px !important;
  margin-top: 4px !important;
  scrollbar-width: thin;
}

/* Common Modal End */
