.phone-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.phone-widget-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #007BFF; /* Цвет кнопки "Позвонить" */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.phone-widget-button:hover {
    background-color: #0056b3;
}

.phone-widget a[href*="wa.me"] {
    background-color: #25D366; /* Зеленый цвет для WhatsApp */
}

.phone-widget a[href*="wa.me"]:hover {
    background-color: #128C7E;
}
