/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.5;
  padding: 20px;
}

/* Header */
header {
  margin-bottom: 2rem;
}
header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Table Section */
#project-list {
  margin-bottom: 2rem;
}
#projects-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #fff;
}

#projects-table thead {
  background: #f0f0f0;
}

#projects-table th,
#projects-table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

#projects-table tr:hover {
  background-color: #f9f9f9;
}

/* Add Project Form Section */
#add-project-section {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  max-width: 500px;
}

#add-project-section form {
  display: flex;
  flex-direction: column;
}

#add-project-section form label {
  font-weight: bold;
  margin: 10px 0 5px 0;
}

#add-project-section form input {
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #aaa;
  border-radius: 3px;
  font-size: 1rem;
}

#add-project-section form button {
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  background: #333;
  color: #fff;
  transition: background 0.3s ease;
}

#add-project-section form button:hover {
  background: #555;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  text-align: center;
  color: #888;
}
