.meals-container-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: none; /* Start with the container hidden */
}

.meals-container {
    display: flex;
    overflow-x: auto;
/*    white-space: nowrap; */
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    scroll-behavior: smooth;
}

.recipe-card {
    width: 300px;
    display: inline-block;
    margin-right: 10px;
}

.recipe-card-image img {
    width: 258px;
    height: auto;
    border-radius:10px;
    overflow:hidden;
}

.recipe-card-actions {
    display: flex;
    flex-direction: column;
}

.recipe-card-button {
    margin-top: 5px;
}

/* Scrolling */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: darkslategray;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 30px;
    z-index: 10;
}
.scroll-button.left {
    left: 0;
}
.scroll-button.right {
    right: 0;
}

/* Toggling */
.toggle-button {
    background-color: #d34727;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    margin-right: 50px;
    width: 250px; /* Set a fixed width for the button */
    text-align: left; /* Align text to the left */
    display: flex;
    justify-content: space-between; /* Ensure arrow and text are on opposite sides */
}

.button-and-search-container {
    display: flex;
    align-items: center;
}
