﻿.floating-container {
    position: fixed;
    right: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2000;
}

/* OPCIONES */

.floating-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.25s;
}

    .floating-options.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

/* BOTONES */

.floating-action {
    border: none;
    border-radius: 16px;
    padding: 14px 18px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
}

.sale-btn {
    background: #16a34a;
}

.expense-btn {
    background: #dc2626;
}

/* BOTON PRINCIPAL */

.floating-main-btn {
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    font-size: 34px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(37,99,235,0.35);
    transition: 0.2s;
}

    .floating-main-btn.active {
        transform: rotate(45deg);
    }
