#best-pet-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 20px auto;
    font-family: 'Tahoma', sans-serif;
}
#best-pet-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}
#best-pet-form select, #best-pet-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
#best-pet-form button {
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
#best-pet-form button:hover {
    background: #218838;
}
#bestPetResult .result-box {
    background: #e6ffe6;
    border: 1px solid #28a745;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}
#bestPetResult .error-box {
    background: #ffe6e6;
    border: 1px solid #dc3545;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}
