/* Style for the bottom bar */
.bottom-bar {
    position: fixed;
    bottom: 2px;
    width: -webkit-fill-available;
    height: 60px;
    margin: 0px 0.3rem;
    background-color: rgba(245, 247, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transform: translateY(101%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

/* Style for the buttons */
.bottom-bar a {
    position: relative;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    margin: 0 5px;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    pointer-events: auto;
}

.lazada-bottombar {
    background-color: #0F136E;
}

.shopee-bottombar {
    background-color: #F25220;
}
.lineoa-bottombar {
    background-color: #11C863;
}
.bottom-bar a .badge {
    position: absolute;
    top: -6px;
    left: 16px;
    background-color: red;
    color: white;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 4px;
    z-index: 2;
    min-height: auto;
}
