* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f172a; /* dark navy */
  color: #e2e8f0;
}

/* CONTAINER */
.container {
  width: 360px;
  margin: 60px auto;
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* HEADINGS */
h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #38bdf8;
}

/* INPUTS */
input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 6px;
  background: #0f172a;
  color: #e2e8f0;
  outline: none;
  border: 1px solid #334155;
}

input:focus {
  border-color: #38bdf8;
}

/* BUTTONS */
button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #0ea5e9;
}

button:disabled {
  background: #475569;
  cursor: not-allowed;
}

/* MESSAGE TEXT */
.msg {
  font-size: 12px;
  margin-top: 5px;
  color: #f87171; /* red */
}

/* LINKS */
a {
  color: #38bdf8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* LIST */
ul {
  list-style: none;
  margin-top: 15px;
}

li {
  background: #0f172a;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  border: 1px solid #334155;
}

/* ACTION BUTTONS */
.actions {
  margin-top: 5px;
}

.actions button {
  width: auto;
  padding: 5px 8px;
  font-size: 12px;
  margin-right: 5px;
}

.actions button:first-child {
  background: #22c55e;
  color: white;
}

.actions button:first-child:hover {
  background: #16a34a;
}

.actions button:last-child {
  background: #ef4444;
  color: white;
}

.actions button:last-child:hover {
  background: #dc2626;
}

/* LOGOUT BUTTON */
button[onclick="logout()"] {
  background: #f59e0b;
  color: #0f172a;
}

button[onclick="logout()"]:hover {
  background: #d97706;
}

.bottom-bar {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  border-top: 1px solid #334155;
}

.logout-btn {
  width: auto;
  padding: 8px 16px;
  background: #f59e0b;
  color: #0f172a;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}

.logout-btn:hover {
  background: #d97706;
}