body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #f0f8ff, #e0ffff);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 30px;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 600px;
  margin-top: 100px;
}

h1 {
  margin-bottom: 20px;
  text-align: center;
  color: rgb(33, 104, 151);
}

.person-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

input[type="text"], input[type="date"] {
  padding: 10px;
  flex: 1;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  margin-top: 10px;
  padding: 10px 15px;
  background: #2196f3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
}

.person-row button {
  background-color: #f44336;         /* Red background */
  color: #ffffff;                    /* White text */
  border: none;
  padding: 8px 12px;                 /* Slightly balanced padding */
  border-radius: 5px;                /* Softer corners */
  font-size: 16px;                   /* Bigger and more visible icon/text */
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 10px;                 /* Spacing from date input */
}

.person-row button:hover {
  background-color: #c62828;         /* Darker red on hover */
}

