body {
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  margin: 0;
}

header {
  background: #020617;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input, button {
  padding: 6px;
  margin: 3px;
}

button {
  cursor: pointer;
}

main {
  padding: 30px;
}

.dashboard {
  background: #020617;
  padding: 20px;
  border-radius: 6px;
}

.message {
  color: #38bdf8;
}

#fileTable {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #eee;
}

#fileTable th {
  background: #222;
  color: #fff;
  padding: 10px;
}

#fileTable td {
  padding: 8px 10px;
  border-top: 1px solid #eee;
}

#fileTable tr:hover {
  background: #504f4f;
}

#fileTable td:nth-child(3),
#fileTable th:nth-child(3) {
  text-align: right;
}

