#mealQuestion,
#amountQuestion,
#myDogQuestion,
#results {
    display: none;
}

.card {
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    background-color: #fff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card.selected {
    background-color: #f0f0f0;
    /* Light grey background for selected state */
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Inset shadow to give pressed-in effect */
    transform: translateY(4px);
    /* Slightly move the card down */
}

.card img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.progress-wrapper {
    margin-top: 20px;
}

.result-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-box p {
    margin: 0 0 10px;
}

.result-box ul {
    list-style: disc outside;
    margin-inline-start: 2em;
}

.amount-field {
    margin-bottom: 10px;
}