header {
    background-color: #e2f5e5;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 50px;
}

h1 {
    margin: 0;
}

section {
    padding: 20px;
    margin: 20px;
}

h2 {
    text-align: center;
    color: #333;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #dfd5d5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label {
    margin: 10px 0 5px;
}

input, select {
    padding: 10px;
    width: 200px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #607361;
}

/* Pet List Styling */
.pet-list ul {
    list-style-type: none;
    padding: 0;
}

.pet-list li {
    background-color: #dfd5d5;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    animation: slideIn 0.5s ease-out forwards;
}

.pet-list li span {
    font-weight: bold;
    color: #333;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}