/* ============================================================================
   SPURA HUB v3 - Action Bar Components
   ============================================================================ */

.card-footer-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card-footer-actions .btn {
    flex: 1 1 0;
    justify-content: center;
}

.card-footer-actions form {
    flex: 0 0 auto;
    margin-left: auto;
}

.card-footer-actions form .btn {
    flex: 0 0 auto;
}

.action-stack .btn {
    width: 100%;
}

.action-stack .btn + .btn {
    margin-top: 8px;
}

.sticky-action-bar {
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    z-index: 20;
}

.sticky-action-bar__summary {
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 720px) {
    .sticky-action-bar {
        flex-direction: column;
        align-items: stretch;
    }
}
