/* ========================================================================= */
/* 📦 GESTÃO DE ALMOXARIFADO - CARDS DE ESTOQUE                              */
/* ========================================================================= */

.consumable-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.consumable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

.card-img-box {
    width: 68px; /* Quadrado levemente maior */
    height: 68px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto; /* Garante a centralização absoluta */
}

/* Os Botões Premium (Soft UI e Ghost) */
.btn-soft-primary {
    background-color: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: none;
    font-weight: 800;
    transition: all 0.2s;
}

.btn-soft-primary:hover {
    background-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-ghost-secondary {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.btn-ghost-secondary:hover {
    background: #f1f5f9;
    color: #475569;
    transform: rotate(45deg);
    border-color: #cbd5e1;
}

/* Painel de Saldo Físico dentro do Card */
.stock-display {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}