.fcb-container {
    position: fixed;
    bottom: 3rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.75rem;
    z-index: 50;
}

.fcb-toggle-button {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 300ms;
}

.fcb-toggle-button:hover {
    background-color: #374151;
}

.fcb-menu {
    display: none;
    background-color: black;
}

.fcb-menu.active {
    display: block;
}

.fcb-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: white;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 300ms;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.fcb-link:last-child {
    margin-bottom: 0;
}

.fcb-link:hover {
    background-color: #f9fafb;
}

.fcb-icon {
    font-size: 1.4rem;
    color: black;
}

.fcb-text {
    color: black;
    font-weight: 500;
    font-style: normal;
}

.fcb-icon.fa-phone {
    font-size: 1.1rem;
} 