body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f5f5f5;
  color: #333;
}

h1, h2 {
  color: #2c3e50;
}

form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input:not([type="checkbox"]),
textarea,
button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #3498db;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}

a button {
  width: auto;
  margin: 10px 0;
}

.admin-app {
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.label {
  width: 100px;
  font-weight: bold;
}

input[name="street_address"] {
  width: 350px;
}

input[name="city"] {
  width: 150px;
}

input[name="zip_code"] {
  width: 100px;
}

select[name="state"],
select[name="authorized"],
select[name="work_type"],
select[name="has_experience"],
input[name="zip_code"] {
  padding: 5px;
  font-size: 14px;
}

select[name="state"] {
  width: 150px;
}

.red {
  color: red;
}