body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

.menu-container {
    position: relative;
    display: flex;
}

.menu-button {
    cursor: pointer;
    padding: 19px 17px 19px 17px;
    position: relative;
    display: inline-block;
}

.menu-button div {
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 3px 0;
    transition: background-color 0.3s ease;
}

.menu {
    position: fixed;
    background-color: white;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgb(0, 0, 0);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu ul li {
    margin: 15px 0;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.menu-close {
    position: absolute;
    top: 6px;
    left: 15px;
    font-size: 30px;
    cursor: pointer;
}

.menu.show {
    transform: translateY(0);
}

.credit{
    padding-top: 19px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}
.separator{
    border: solid 1px rgb(155, 145, 145);
}

.content{

    background-color:  #f5f5f5;
    padding: 0px 17px;
    min-height: 93vh;
}


.gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 7px 0px 55px 0px;    ;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    margin: 0px;
}

.gallery::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

.gallery li {
    scroll-snap-align: center;
    flex: 0 0 100%;
    border-radius: 3px;
    font-size: 0;
    position: relative;
}

.gallery::-webkit-scrollbar {
    display: none;
}
.gallery li img {
   width: 100%;
   border-radius: 5px;
}
.libele{
    position: absolute;
    font-size: 20px;
    bottom: -12px;
    left: 14px;
    background-color: black;
    color: white;
    padding: 3px;
    font-weight: 600;
}
.libele-transactions{

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

}
.the-box{
    height: 50px;
    background-color: white;
    margin: 10px 0px;
    border-radius: 5px;
    padding: 13px;
}
.libele-history{
display: flex;
justify-content: space-between;
width: 100%;
padding: 11px 0px 0px 12px;
}
.history img{
    height: 40px;
}
.history{
    display: flex;

}
.date{
padding-top: 8px;
font-size: 13px;
}
.transaction{
    font-weight: 600;
    font-size: 16px;
}
.display-all{
    font-weight: 400;
    font-size: 14px;
    color: #003869;
}
.second-transactions{
    margin-top: 20px;
    margin-bottom: 11px;
}
.small-box{
    background-color: white;
    width: 75px;
    /* height: 60px; */
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.small-boxs{
    display: flex;
    justify-content: space-between;
}
.small-box img{
    max-width: 45%;
    max-height: 100%;
}
.libele-small-box{
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;

}
.bottom-menu{
    position: fixed;
    bottom: 125px;
    height: 100px;
    /* width: 90%; */
    left: 0;
    right: 0;
    box-sizing: border-box;
    padding: 17px;
}

.two-btn{
    display: flex;
    justify-content: space-between;
    gap: 10px;

margin: 10px 0px;
    
}
.two-btn div{
    background-color: white;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 117px;
border-radius: 5px;
}
.send{

}
.share{

}
.pay{
    height: 60px;
    width: 100%;
    color: white;
    background-color: #003869;
    border-radius: 5px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}