/* ============================= */
/* FORCE Filament buttons fix */
/* ============================= */

/* Base */
button.fi-btn {
    border: 1px solid rgba(14, 107, 237, 0.6);
}

/* Primary button */
button.fi-btn.fi-btn-primary {
    background-color: rgb(var(--primary-600)) !important;
    border-color: rgb(var(--primary-600)) !important;
    color: #0b1220 !important;
}

/* Hover */
button.fi-btn.fi-btn-primary:hover {
    background-color: rgb(var(--primary-700)) !important;
}

/* Disabled — NON primary */
button.fi-btn:not(.fi-btn-primary)[disabled],
button.fi-btn:not(.fi-btn-primary)[aria-disabled="true"] {
    opacity: 0.6 !important;
    background-color: rgb(226 232 240 / 0.7) !important;
    border-color: rgb(148 163 184 / 0.5) !important;
    color: rgb(15 23 42 / 0.5) !important;
    cursor: not-allowed;
}

/* Disabled — PRIMARY (Create) */
button.fi-btn.fi-btn-primary[disabled],
button.fi-btn.fi-btn-primary[aria-disabled="true"] {
    opacity: 1 !important;
    background-color: blue !important;
    color: #0b1220 !important;
    cursor: not-allowed;
}
