/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Bio / Descriptions */
.bio {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Buttons and Links */
.links a {
  display: block;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-radius: 5px;
  transition: background 0.2s;
}

.links a:hover {
  background-color: #0056b3;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

input[type="text"],
input[type="password"],
input[type="url"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #28a745;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #218838;
}

/* List of links on dashboard */
ul#link-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

ul#link-list li {
  background: #eee;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  text-align: left;
}

ul#link-list li button {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

ul#link-list li button:hover {
  background: #c82333;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #999;
}
