.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.mobile-bottom-bar .demo-button {
    display: inline-block;
    background-color: #ff5a00;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s ease;
}

.mobile-bottom-bar .demo-button:hover,
.mobile-bottom-bar .demo-button:focus {
    background-color: #e05000;
}

/* Show only on mobile devices */
@media (max-width: 767px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    /* Add padding to the bottom of the page to prevent content from being hidden behind the bar */
    body {
        padding-bottom: 76px;
    }
} 