/* Custom Filament Styles - Validated Customizations */

/* Sticky footer for long forms - keeps action buttons visible when scrolling */
.fi-resource-create-record-page .fi-sc-actions,
.fi-resource-edit-record-page .fi-sc-actions {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;

    width: auto;
    max-width: none;

    height: 72px;
    min-height: 72px;

    z-index: 1000;
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    padding: 0 1.25rem;

    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.dark .fi-sc-actions {
    background: #1f2937;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
