/*
 * UIX-04 — ESP ERP admin theme personality (brand green + Inter + dark already live).
 * Injected via a render hook in AppServiceProvider — static CSS, no Node/Vite build.
 * Deliberately minimal: rounding + spacing personality only, so Filament upgrades
 * never break layouts.
 */

/* Softer, rounder cards and sections */
.fi-section,
.fi-ta-content,
.fi-bg-color {
    border-radius: 14px !important;
}

/* Buttons: slightly rounder with a touch more breathing room */
.fi-btn {
    border-radius: 10px;
    padding-inline: 1rem;
}

/* Table headers: quiet uppercase labels (invoice-PDF design language) */
.fi-ta-table thead th {
    font-size: 11px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Inputs: consistent focus ring in brand green */
.fi-input:focus,
.fi-select:focus {
    box-shadow: 0 0 0 2px rgba(0, 200, 83, 0.35) !important;
    border-color: #00c853 !important;
}
