/* Initially hide the container */
.angie-mobile-phone-header-container-4379467f {
    display: none;
    width: 100%;
    background-color: #f8f9fa; /* Light background for the header bar */
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 9999;
}

.angie-mobile-phone-btn-4379467f {
    display: inline-flex;
    background-color: #F2902F;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px; /* More square-ish for header integration */
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.angie-mobile-phone-btn-4379467f:hover,
.angie-mobile-phone-btn-4379467f:focus {
    color: #ffffff;
    background-color: #d17a22;
    text-decoration: none;
}

/* Only display on mobile devices */
@media (max-width: 767px) {
    .angie-mobile-phone-header-container-4379467f {
        display: block;
    }
}