/**
 * Put custom css here.
 *
 * Run `php artisan filament:assets` to publish the css to the public directory.
 */


/* Stick form submit/save buttons to bottom of screen while scrolling */
div div.fi-form-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    bottom: -100%;
}

@media (min-width: 600px) {
    div div.fi-form-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.fi-form-actions.fi-form-actions--fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background-color: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    transition: bottom 0.6s ease-in-out;
}

/* Ensure checkbox is more visible when not focused */
input.fi-checkbox-input:not(:focus) {
    --tw-ring-color: rgb(var(--gray-500)) !important;
}

/* Make read-only inputs seem less interactable */
input:read-only {
    cursor: default;
    color: rgb(var(--gray-400));
}

/* Make tabs wrap instead of scroll horizontally */
.fi-tabs {
    flex-wrap: wrap;
    overflow: hidden;
}

@media (max-width: 600px) {
    .fi-ac-btn-group .fi-btn-label{
        display: none;
    }
}
