body {
  margin: 0;
  font-family: monospace;
  background: radial-gradient(circle at top, #050020, black 80%);
  color: cyan;
}

h1 {
  text-align: center;
  font-size: 26px;
  text-shadow: 0 0 20px cyan;
  padding: 10px;
}

#loginBox {
  width: 90%;
  max-width: 350px;
  margin: 80px auto;
  padding: 25px;
  background: black;
  border: 2px solid #00ffff55;
  border-radius: 14px;
  text-align: center;
}

input, select {
  width: 95%;
  padding: 12px;
  margin: 10px;
  font-size: 16px;
  background: #020814;
  border: 1px solid cyan;
  color: cyan;
  border-radius: 8px;
}

button {
  padding: 12px 16px;
  background: #020814;
  border: 1px solid cyan;
  color: cyan;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s;
  font-size: 15px;
}

button:hover {
  box-shadow: 0 0 20px cyan;
  transform: scale(1.05);
}

.fileRow {
  margin: 10px;
  padding: 14px;
  border: 1px solid #00ffff33;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,255,255,0.05);
  flex-wrap: wrap;
}

.fileRow:hover {
  background: rgba(0,255,255,0.15);
}

.fileRow span {
  font-size: 16px;
  word-break: break-word;
  max-width: 60%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.actions button {
  font-size: 13px;
  padding: 8px 10px;
}

#toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 15px;
}

#alert {
  display: none;
  position: fixed;
  inset: 0;
  background: darkred;
  color: white;
  font-size: 28px;
  text-align: center;
  padding-top: 200px;
  z-index: 999;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { background: #500; }
  50% { background: red; }
  100% { background: #500; }
}
