﻿/* Styling the button */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0a2540; /* Green color */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999; /* Keeps it above other content */
    display: none; /* Hidden by default */
}

/* Show only on screens smaller than 768px (Mobile) */
@media (max-width: 767px) {
    .mobile-call-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
