#fc-widget {
    position: fixed;
    bottom: 15px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

#fc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1b365d;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    padding-top: 5px;
}

#fc-toggle:hover,
#fc-toggle:focus {
    background: #606c76;
    color: #fff;
    text-decoration: none;
    outline: none;
}

#fc-widget.is-open #fc-toggle {
    transform: rotate(0deg);
}

#fc-toggle .fc-icon-close {
    display: none;
}

#fc-widget.is-open #fc-toggle .fc-icon-open {
    display: none;
}

#fc-widget.is-open #fc-toggle .fc-icon-close {
    display: flex;
}

#fc-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#fc-widget.is-open #fc-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fc-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    border-radius: 28px;
    background: #1b365d;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
    transition: background 0.2s;
    white-space: nowrap;
    line-height: 1;
}

.fc-option:hover,
.fc-option:focus {
    background: #606c76;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.fc-option svg {
    flex-shrink: 0;
}
