body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #333;
}

#clientForm {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

#clientForm input {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1;
}

#clientForm button {
  padding: 8px 16px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#clientForm button:hover {
  background-color: #218838;
}

#clientsTable {
  width: 100%;
  border-collapse: collapse;
}

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

#clientsTable th {
  background-color: #f8f9fa;
}

.actions {
  display: flex;
  gap: 5px;
}

.actions button {
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.actions button.edit {
  background-color: #ffc107;
  color: black;
}

.actions button.delete {
  background-color: #dc3545;
  color: white;
}
