/* ==========================================================================
   datastore CSS — Modern Dark Theme
   ========================================================================== */

:root {
  --bg-main: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #172033;
  --bg-surface: #1e293b;
  --bg-surface-hover: #273549;
  --bg-input: #0f172a;
  
  --border-subtle: #1f293d;
  --border-focus: #3b82f6;
  --border-highlight: #334155;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-primary: #38bdf8;
  --accent-primary-hover: #0284c7;
  --accent-blue: #3b82f6;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-danger: #ef4444;
  --accent-danger-hover: #dc2626;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5);

  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Utilities */
.hidden {
  display: none !important;
}

.text-muted {
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.35rem 0.65rem;
  font-size: 0.775rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #2563eb;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background-color: var(--bg-surface-hover);
  border-color: var(--border-highlight);
}

.btn-danger {
  background-color: var(--accent-danger);
  color: #ffffff;
}

.btn-danger:hover {
  background-color: var(--accent-danger-hover);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.btn-icon:hover {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-icon.active {
  background-color: var(--bg-surface);
  color: var(--accent-primary);
  border-color: var(--border-highlight);
}

.btn-logout:hover {
  color: var(--accent-danger);
}

/* Spinner */
.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   LOGIN VIEW
   ========================================================================== */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.brand-icon {
  background: linear-gradient(135deg, #0284c7, #6366f1);
  color: white;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.brand-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  background: linear-gradient(to right, #f8fafc, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-align: center;
}

.login-form {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.token-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.token-input-wrapper input {
  width: 100%;
  padding: 0.75rem 2.75rem 0.75rem 0.85rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.token-input-wrapper input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.token-input-wrapper .btn-icon {
  position: absolute;
  right: 0.5rem;
}

.help-text {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.login-error {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.login-footer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   MAIN EXPLORER VIEW
   ========================================================================== */
.explorer-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 40;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-text {
  color: var(--text-primary);
}

.device-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-success);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-success);
}

.navbar-center {
  flex: 1;
  max-width: 440px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  color: var(--text-muted);
  pointer-events: none;
}

.search-wrapper input {
  width: 100%;
  padding: 0.45rem 2.2rem 0.45rem 2.3rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: all 0.15s ease;
}

.search-wrapper input:focus {
  outline: none;
  border-color: var(--border-focus);
  background-color: #0b1120;
}

.clear-search {
  position: absolute;
  right: 0.6rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.2rem;
}

.clear-search:hover {
  color: var(--text-primary);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.toggle-group {
  display: flex;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2px;
}

.toggle-pill {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.775rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-weight: 500;
}

.toggle-pill.active {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.view-mode-group {
  display: flex;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2px;
}

/* Nav Toolbar & Breadcrumbs */
.nav-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background-color: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  gap: 1rem;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
}

.up-btn {
  padding: 0.3rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
}

.crumb-item {
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.15s ease;
}

.crumb-item:hover {
  color: var(--text-primary);
  background-color: var(--bg-surface);
}

.crumb-item.current {
  color: var(--text-primary);
  font-weight: 600;
  cursor: default;
  background: none;
}

.crumb-sep {
  color: var(--text-muted);
  user-select: none;
}

.folder-stats {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.drop-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: rgba(56, 189, 248, 0.05);
  border: 1px dashed rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.drop-banner strong {
  color: var(--accent-primary);
}

.file-list-container {
  flex: 1;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   VIEW: LIST (TABLE)
   ========================================================================== */
.view-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.file-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.file-table th {
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-subtle);
  background-color: rgba(15, 23, 42, 0.4);
}

.file-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(31, 41, 61, 0.5);
  vertical-align: middle;
}

.file-table tr.item-row {
  cursor: pointer;
  transition: background-color 0.12s ease;
}

.file-table tr.item-row:hover {
  background-color: var(--bg-card-hover);
}

.file-table tr.folder-row {
  font-weight: 500;
}

.item-name-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.item-icon.folder {
  color: #fbbf24;
}

.item-icon.image {
  color: #38bdf8;
}

.item-icon.video {
  color: #f43f5e;
}

.item-icon.audio {
  color: #a855f7;
}

.item-icon.code {
  color: #34d399;
}

.item-icon.doc {
  color: #60a5fa;
}

.item-icon.archive {
  color: #fb923c;
}

.item-title {
  color: var(--text-primary);
  word-break: break-all;
}

.item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.action-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 0.3rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.action-btn:hover {
  background-color: var(--bg-surface-hover);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.action-btn.delete-btn:hover {
  color: var(--accent-danger);
  background-color: rgba(239, 68, 68, 0.12);
}

/* ==========================================================================
   VIEW: GRID
   ========================================================================== */
.view-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
}

.grid-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.grid-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-highlight);
  background-color: var(--bg-surface-hover);
  box-shadow: var(--shadow-md);
}

.grid-card .item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.grid-card .grid-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.grid-card .grid-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.grid-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

.empty-icon {
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.empty-state h3 {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.empty-state p {
  font-size: 0.85rem;
}

/* ==========================================================================
   DRAG AND DROP OVERLAY
   ========================================================================== */
.drag-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--accent-primary);
  margin: 1rem;
  border-radius: var(--radius-lg);
  pointer-events: none;
  animation: fadeIn 0.15s ease-out;
}

.drag-overlay-content {
  text-align: center;
  color: var(--text-primary);
}

.drag-icon {
  color: var(--accent-primary);
  margin-bottom: 1rem;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hidden input */
.hidden-input {
  display: none;
}

/* ==========================================================================
   UPLOAD PANEL (FLOATING BOTTOM RIGHT)
   ========================================================================== */
.upload-panel {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 360px;
  max-width: calc(100vw - 3rem);
  background-color: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  overflow: hidden;
  animation: slideUp 0.2s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.upload-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.upload-panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

.upload-queue-list {
  max-height: 240px;
  overflow-y: auto;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.upload-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.5rem;
  background-color: var(--bg-input);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.upload-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upload-filename {
  font-weight: 500;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.upload-progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--bg-surface);
  border-radius: 2px;
  overflow: hidden;
}

.upload-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-primary));
  width: 0%;
  transition: width 0.1s ease;
}

.upload-progress-fill.success {
  background: var(--accent-success);
}

.upload-progress-fill.error {
  background: var(--accent-danger);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  animation: fadeIn 0.15s ease-out;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-header.modal-danger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.modal-icon-danger {
  color: var(--accent-danger);
}

.modal-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.delete-item-preview {
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.delete-item-preview strong {
  word-break: break-all;
  color: var(--text-primary);
}

.warning-text {
  font-size: 0.8rem;
  color: var(--accent-warning);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

/* Preview Modal */
.preview-card {
  max-width: 850px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-content {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  max-height: 70vh;
  background-color: #080c14;
}

.preview-content img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.preview-content video, .preview-content audio {
  max-width: 100%;
}

.preview-content pre {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: var(--text-primary);
  width: 100%;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 60vh;
  overflow-y: auto;
  padding: 1rem;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-card);
  color: var(--text-primary);
  border-left: 4px solid var(--accent-blue);
  animation: toastSlideIn 0.2s ease-out;
}

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.toast-success {
  border-left-color: var(--accent-success);
}

.toast.toast-error {
  border-left-color: var(--accent-danger);
}

.toast.toast-info {
  border-left-color: var(--accent-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }

  .navbar-left {
    order: 1;
  }

  .navbar-right {
    order: 2;
    margin-left: auto;
  }

  .navbar-center {
    order: 3;
    max-width: 100%;
    width: 100%;
  }

  .toggle-group {
    display: none;
  }

  .main-content {
    padding: 0.75rem;
  }

  .nav-toolbar {
    padding: 0.5rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .file-table th:nth-child(3),
  .file-table td:nth-child(3) {
    display: none;
  }
}
