
body {
  background: #ffe6f0;
  margin: 0;
  padding: 20px;
  color: #4a0026;
}

.container {
  width: 65%;
  margin: auto;
  padding: 25px;
}

.title {
  color: #c11c84;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 1px;
}

form table {
  width: 100%;
  border-collapse: collapse;
}

form td,
form th {
  padding: 10px;
  text-align: left;
  border: 1px solid #c11c84;
}

form th {
  background: #c11c84;
  color: white;
  font-weight: bold;
  text-align: center;
}

input[type="text"],
input[type="email"],
select {
  width: 93%;
  padding: 8px;
  border: 1px solid #ff99cc;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
  border-color: #ff4da6;
}


input[type="submit"],
.btn {
  background: #c11c84;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}



.btn-edit {
  background: #ff99cc;
}

.btn-edit:hover {
  background: #ff66b2;
}

.btn-delete {
  background: #ff3366;
}

.btn-delete:hover {
  background: #cc0044;
}

.alert {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.alert.success {
  background: #ffccdf;
  color: #660033;
}

.alert.error {
  background: #ffb3b3;
  color: #660000;
}


.table-list {
  margin-top: 30px;
}

.table-list table {
  width: 100%;
  border-collapse: collapse;
}

.table-list th,
.table-list td {
  padding: 12px;
  border: 1px solid #c11c84;
  text-align: center;
}

.table-list th {
  background: #c11c84;
  color: #fff;
}

.table-list tr:nth-child(even) {
  background: #fff0f5;
}

.table-list tr:hover {
  background: #ffe6f0;
  transition: background 0.2s ease-in-out;
}
