/* Bottom Action Bar for Mobile */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1050;
    display: none; /* Hidden by default, shown on mobile */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.action-btn {
    flex: 1; /* Each button takes up half the space */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.action-btn i {
    margin-right: 8px;
    font-size: 14px;
}

.action-btn:hover {
    opacity: 0.9;
}

.whatsapp-btn {
    background-color: #25D366; /* Green */
}

.phone-btn {
    background-color: #007bff; /* Blue */
}

/* Show only on mobile devices */
@media (max-width: 767.98px) {
    .bottom-action-bar {
        display: flex;
    }
}
