.cart {
    width: 125px;
    border: none;
    background-color: white;
    text-align: end;
}

.link-app {
    padding: 20px;
    text-decoration: none;
    font-size: 18px;
    color: #151A40;
}

.topbar-app {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    background-color: white;
    color: #fff;
    padding: 15px;
    box-sizing: border-box;
    z-index: 1;
}

.sidenav-app {
    margin-top: 100px;
    display: block;
    height: 100%;
    width: 100px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    padding-top: 20px;
}

.fixed-height-image {
    height: 500px;
    /* Set the desired height */
    width: 100%;
    /* Occupy the full width of the container */
    object-fit: cover;
    /* Maintain aspect ratio and cover the container */
    display: block;
    /* Remove any default inline styling */
    margin: 0 auto;
    /* Center the image horizontally */
}

.main-app {
    margin-top: 100px;
    margin-left: 100px;
    margin-bottom: 100px;
}

.search-input-app {
    display: block;
}

.mobile-munu {
    display: none;
}

.scrollable-container {
    display: none;
    width: 100%;
    white-space: nowrap;
    /* ไม่ให้ขึ้นบรรทัดใหม่ */
    overflow-x: auto;
    /* เพื่อทำให้มี scrollbar เมื่อเนื้อหามีความกว้างมากกว่า container */
}

.scrollable-content {
    width: 200%;
    /* ปรับความกว้างของเนื้อหาตามต้องการ */
    display: inline-block;
    /* ทำให้เนื้อหาอยู่ในบรรทัดเดียวกัน */
    white-space: normal;
    /* ให้เนื้อหามีการขึ้นบรรทัดใหม่ */
}

.category {
    display: block;
}

@media screen and (max-width: 600px) {
    .main-app {
        margin-left: 100px;
        margin-top: 100px;
    }

    .category {
        display: none;
    }

    /* .mobile-munu {
        display: block;
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .sidenav-app {
        display: none;
        width:0px
    } */

    .fixed-height-image {
        height: 200px;
        /* Set the desired height */

    }

    .search-input-app {
        display: none;
    }

    .topbar-app {
        height: 100px;
    }

    .scrollable-container {
        display: block;
    }

}

@media screen and (max-width: 380px) {
    .topbar-app {
        height: 120px;
    }

    .contact-app {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        margin-top: 20px;
    }

    .logo-app {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;

    }

    .main-app {
        margin-left: 100px;
        margin-top: 120px;
    }
    .sidenav-app {
        margin-top: 120px;
    }
}



.floating-button {
    position: fixed;
    text-decoration: none;
    bottom: 20px;
    right: 20px;
    background-color: #27AE60;
    /* Change the button color as needed */
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Add some hover effect for better user experience */
.floating-button:hover {
    color: aliceblue;
    background-color: #52BE80;
    /* Change the hover color as needed */
}

.card-category {
    width: 100%;
    border-radius: 5px;
    background-color: #E74C3C;
    padding: 20px;
    color: white;
}

.text-primary-app {
    color: #E74C3C;
}