:root {
  --row-border: #e6e6e6;
  --header-bg: #f3f3f3;
}

.documents-library table.dataTable thead th {
  background: var(--header-bg);
  padding: 18px 18px;
}

.documents-library .dt-empty-footer .justify-content-between {
  padding: 0 10px;
  overflow: hidden;
}

.documents-library .doclib-table {
  overflow-x: auto;
}

.documents-library .doclib-status {
  margin-bottom: 12px;
}

.documents-library .filecell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.documents-library .fileicon {
  font-size: 20px;
}

.documents-library .fileicon.folder {
  color: #1f2937;
}

.documents-library .fileicon.pdf {
  color: red;
}

.documents-library .filename {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.documents-library .filename .subtitle {
  color: #6c757d;
  font-size: 13px;
}

.documents-library .row-link,
.documents-library .file-link {
  cursor: pointer;
}

.documents-library .row-link:hover .filename .title,
.documents-library .file-link:hover .filename .title {
  text-decoration: underline;
}

.documents-library .meta {
  text-align: right;
  white-space: nowrap;
}

.documents-library .kebab-btn {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  border-radius: 8px;
  color: #6b7280;
}

.documents-library .kebab-btn:hover {
  background: var(--white);
}

.documents-library .row-actions {
  padding: 14px 18px;
  background: #fafafa;
}

.documents-library .row-actions .label {
  color: #666;
  margin-right: 10px;
  font-weight: 600;
}

.documents-library .doclib-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;

  background: var(--white);
  border-bottom: 1px solid var(--row-border);
  padding: 10px 0;
  margin-bottom: 20px;
}

.documents-library .crumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.documents-library #pathLabel {
  word-break: break-word;
}