Lifesoft

main.css

코드 1
body {
  font-family: sans-serif;
  font-size: 16px;
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ccc;
  padding: 8px;
}

input, textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #aaa;
}

button {
  padding: 6px 12px;
  background: #007acc;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #005f99;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #005f99;
}