/* File List Styling - CONSISTENT FONTS */
.file-list {
  background: #2a2a3e;
  margin: 0;
  border: 1px solid #3a3a4e;
  border-radius: 0 0 12px 12px;
  overflow: visible;
}

.file-list-header {
  display: flex;
  background: #1e1e2e;
  padding: 15px 0;
  border-bottom: 2px solid #4a4a5e;
  font-weight: 500;
  color: #a0a0b0;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.file-list-header > div {
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.file-list-header a {
  color: #a0a0b0;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.file-list-header a:hover {
  color: #6366f1;
}

.file-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #3a3a4e;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.file-item:hover {
  background: #323248;
}
.file-item.folder {
  background: #2d2d44;
}
.file-item.folder:hover {
  background: #363654;
}

.file-item > div {
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

/* Column Widths - CONSISTENT */
.file-checkbox {
  width: 50px;
  justify-content: center;
}
.file-icon {
  width: 60px;
  justify-content: center;
  font-size: 16px;
}
.file-name {
  flex: 1;
  min-width: 200px;
}
.file-size {
  width: 90px;
  justify-content: flex-end;
  text-align: right;
}
.file-date {
  width: 150px;
}
.file-permissions {
  width: 130px;
  font-family: "Courier New", monospace;
  font-size: 11px;
}
.file-actions {
  width: 60px;
  justify-content: center;
  position: relative;
}

/* Text Styling - ALL CONSISTENT */
.file-name a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

.file-name a:hover {
  color: #6366f1;
}

.file-name a.folder-name {
  color: #fbbf24;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

.file-name a.folder-name:hover {
  color: #f59e0b;
}

.file-name span {
  color: #e0e0e0;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

.file-size {
  color: #a0a0b0;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

.file-date {
  color: #a0a0b0;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

.file-permissions {
  color: #9ca3af;
  font-size: 11px;
  font-family: "Courier New", monospace;
  font-weight: 400;
}

.sort-arrow {
  margin-left: 5px;
  font-size: 12px;
  color: #6366f1;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
