.telegram-float-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.telegram-float {
    background-color: #0088cc;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.telegram-float:hover {
    background-color: #0077b5;
}
.telegram-bubble {
    position: absolute;
    bottom: 65px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 160px;
    display: none;
    flex-direction: column;
}
.telegram-bubble a {
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
}
.telegram-bubble a:hover {
    background-color: #f0f0f0;
}