.foodplan
{
    background-color: var(--bg-3);
    width: 90vw;
    height: 80vh;
    margin: auto 5vw 0 5vw;
    border: 4px solid var(--primary);
    display: flex;
}

.foodplan-day
{
    background-color: var(--bg-1);
    width: 16vw;
    height: 76vh;
    margin: 2vh 1vw 2vh 1vw;
    border: 2px solid var(--secondary);
    text-align: center;
}

.date
{
    font-size: small;
}

.foodplan-food h4
{
    margin: 0.5vh 0 0 0;
    text-align: center;
}

.foodplan button
{
    width: 10vw;
    height: 3vh;
    text-align: center;
    margin-top: 1vh;
}

.details
{
    text-align: center;
    font-size: medium;
}

.food_footer
{
    margin: 0 0.5vw 1vh 0.5vw;
    font-size: small;
    display: flex;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.ingredients_div2
{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 40vh;
    width: 30vw;
    background-color: var(--bg-3);
    border: 4px solid var(--primary);
    border-radius: 2px;
    z-index: 9999;
}

.ingredients_div2 h1 
{
    text-align: center;
    font-size: larger;
    color: var(--text-color);
}

.ingredients_div2 p
{
    margin-top: 1vh;
    text-align: center;
    color: var(--text-color);
}

.ingredients_div2 img
{
    width: 2vw;
    height: 2vh;
    position: absolute;
    top: 5px; /* Abstand von oben */
    right: 10px; /* Abstand von rechts */
    height: auto; /* Das Bild wird proportional skaliert */
}

.ingredients_div2 img:hover
{
    cursor: pointer;
}

#week
{
    background-color: var(--bg-3);
    border: 1px solid var(--primary);
    border-radius: 2px;
    margin: 1vh 0 0.5vh 5vw;
    color: var(--text-color);
}