.meal-entry-date-picker {
    display: inline-flex;
    background: var(--primary-light);
    border-radius: 10px;
    box-shadow: 2px 2px 4px var(--shadow);
}

.meal-entry-date-picker > div {
    padding: 0.25rem 1rem;
}

.meal-day > h2 {
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-shadow: 2px 2px 4px var(--shadow);
}

.meal-day-details  {
    background: var(--primary-light);
    border-radius: 10px;
    box-shadow: 2px 2px 4px var(--shadow);
}

.meal-entry-details-image {
    position: relative;
}

.meal-entry-details-done input {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.meal-entry {
    align-items: center;
}

.meal-entry-details {
    display: flex;
    align-items: center;
}

.meal-entry img {
    width: 110px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.meal-entry h3 {
    font-weight: 900;
    color: var(--accent);
}

.meal-entry .name {
    display: block;
    font-weight: bold;
}

.meal-entry .servings {
    display: block;
}

.text-shadow {
    text-shadow: var(--text-shadow);
}

.meal-suggestion-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meal-suggestion {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 4px var(--shadow);
    padding: 0.75rem;
    font-weight: bold;
    color: var(--accent);
    /* max-width: 110px; */
}

.meal-suggestion h2 {
    font-weight: 900;
    color: var(--accent);
}

.meal-suggestion img {
    width: 110px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.meal-suggestion input[type="submit"] {
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
}

.meal-suggestion input[type="submit"]:hover {
    background: var(--accent-dark);
    cursor: pointer;
}
