
/* Floating Action Button Container */
.dashboard-fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 1rem;
    z-index: 1000;
}

/* Floating Edit Button */
.btn-edit-mode.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.btn-edit-mode.fab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: #F8FAFC;
}

.btn-edit-mode.fab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    width: auto;
    padding: 0 24px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-edit-mode.fab-btn .icon {
    font-size: 24px;
    margin: 0;
}

/* Add Widget Button in FAB context */
.dashboard-fab-container .add-widget-container {
    margin-bottom: 0.5rem;
}

.dashboard-fab-container .btn-add-widget {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dashboard-fab-container .btn-add-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: #F8FAFC;
}
