.phone-container {
    display: flex;
    align-items: center;  /* Ensures both elements align vertically */
    gap: 10px;  /* Adds some space between the button and the phone number */
}
/* Hide phone number initially */
.phone-number-light {
    display: none;
    color: var(--wp--preset--color--pink-600);
    cursor: pointer;
    text-decoration: underline; 
}
/* Style the toggle button */
.phone-toggle-button-light {
    color: var(--wp--preset--color--pink-600);
    cursor: pointer;
    text-decoration: underline;
}
footer .phone-toggle-button-light {
    color: var(--wp--preset--color--grey-500);
    font-size:  16px;
    text-decoration: underline;
}
.phone-toggle-button-light:hover {
    text-decoration: none;   
}
.phone-icon {
    width: 20px;  /* Adjust the icon size */
    height: 20px; /* Adjust the icon size */
    vertical-align: middle;
}

/* Hide phone number initially */
.phone-number-dark {
    display: none;
    color: white;
    cursor: pointer;
    text-decoration: underline; 
}
/* Style the toggle button */
.phone-toggle-button-dark {
    color: white;
    cursor: pointer;
    text-decoration: underline;
}
.phone-toggle-button-dark:hover {
    text-decoration: none;   
}

@media (max-width: 767px) {
    .navigation-bar-group .phone-container {
        display: none;
    }
}