.phone-notification {
    position: absolute;
    top: 100%;
    left: 24px;
    border: 2px solid #f9f9f9;
    background-color: #fff;
    color: #555;
    padding: 8px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1000;
    opacity: 1;
    display:flex;
    justify-content: space-between;
    gap:8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    font-weight: normal;
}

.phone-notification.hide {
    opacity: 0;
    transform: translateX(-50px);
    pointer-events: none;
}

.phone-notification .phone-close-button {
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}