.fbd-floating-account {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.fbd-account-button {
    background-color: var(--brand-yellow);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    color: var(--brand-black) !important;
    font-size: 24px;
}

.fbd-account-button:hover {
    background-color: var(--brand-yellow-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.fbd-account-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    background-color: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    min-width: 200px;
    overflow: hidden;
}

.fbd-account-menu-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--brand-text);
    border-bottom: 1px solid var(--brand-border);
    transition: background-color 0.2s ease;
}

.fbd-account-menu-item:hover {
    background-color: var(--brand-surface-2);
}

.fbd-account-menu-item:last-child {
    border-bottom: none;
}

.fbd-account-menu-item i {
    margin-right: 8px;
    width: 16px;
    color: var(--brand-yellow);
}

@media (max-width: 768px) {
    .fbd-floating-account {
        bottom: 15px;
        left: 15px;
    }
    
    .fbd-account-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .fbd-account-menu {
        min-width: 180px;
        bottom: 70px;
    }
    
    .fbd-account-menu-item {
        padding: 10px 14px;
        font-size: 14px;
    }
}