body {
  background: #f9fafb;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container-fixed {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

.file-table th {
  font-weight: 600;
  font-size: 14px;
  color: #6c757d;
}

.file-table td {
  font-size: 14px;
  vertical-align: middle; /* minden cella középre */
}

.file-row:hover {
  background: #f1f3f5;
  cursor: pointer;
}

.file-icon {
  font-size: 1.2rem;
  color: #0d6efd;
}

.folder-icon {
  font-size: 1.2rem;
  color: #f0ad4e;
}

/* Sticky fejléc */
.header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f9fafb; /* háttér, hogy a scroll alatti tartalmat elfedje */
  padding: 0.5rem 0 0rem;
}

/* Ellipsis a hosszú fájlnevekre */
.file-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobilbarát táblázat */
.file-table td:first-child,
.file-table th:first-child {
  min-width: 250px;
}

.file-table td:nth-child(2),
.file-table th:nth-child(2) {
  min-width: 160px;
}

.file-table td:nth-child(3),
.file-table th:nth-child(3) {
  min-width: 100px;
}

/* Breadcrumb */
.breadcrumb-scroll {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.breadcrumb-scroll::-webkit-scrollbar {
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.breadcrumb-item {
  flex-shrink: 0;
}
