.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-main {
    background-color: #17f017;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;

}

.fab-main:hover {
    transform: scale(1.1);
}

.fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
}

.fab-container:not(.open) .fab-options a {
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
}

.fab-container.open .fab-options a {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.fab-options a {
    text-decoration: none;
    margin: 6px 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-left: 10px;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-label {
    background: white;
    padding: 6px 10px;
    margin-right: 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.messenger {
    background: #0078ff;
}

.email {
    background: #ff4b5c;
}

.link {
    background: #b184f6;
}

.close {
    background: #9184f3;
}

.fab-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.fab-main svg {
    fill: white;
    width: 42px;
    height: 42px;
    stroke: none;
}