/* Telegram Widget Link */
#telegramWidgetLink {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Changed from right to left */
    width: 60px;
    height: 60px;
    background-color: #0088cc; /* Telegram blue */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg'); /* Telegram logo */
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

#telegramWidgetLink:hover {
    transform: scale(1.1);
}
