.file-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}
.file-content *{
  width: auto !important;
}
iframe{
  min-width: 100% !important;
  min-height: 80vh !important;
}
table{
  border: 1px solid black;
  padding: 1rem;
  border-collapse: collapse;
}
table th,
table td {
    border: 1px solid black;
    padding: 6px 10px;
}

.file-container2{
  width: 800px !important;
  margin-inline:auto;
  max-width: 100%;
}
/* Sidebar */
.file-sidebar {
  width: 250px;
  max-width: 100%;
  background: #2c3e50;
  color: white;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}

/* Kapalı hali */
.file-sidebar.closed {
  width: 0;
  padding: 0;
}

/* Content */
.file-content {
  flex: 1;
  padding: 20px;
  max-width: 100%;
  box-sizing: border-box;
}

.file-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 100%;
}
.gecmis-container{
  display: flex;
  flex-direction: column;
  gap: 1rem;

}
/* Mobil uyum */
@media (max-width: 768px) {
  .file-container {
    flex-direction: column;
    height: auto;
  }

  .file-sidebar {
    width: 100%;
  }

  .file-sidebar.closed {
    width: 0;
    height: 0;
    padding: 0;
  }

  .file-content {
    width: 100%;
  }
}


#toggleBtn {
  padding: 8px 12px;
  border: none;
  background: #3498db;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}