/* --- UTILITIES --- */
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.inline-block { display: inline-block; }
.w-3 { width: 12px; }
.h-3 { height: 12px; }
.w-4 { width: 16px; }
.h-4 { height: 16px; }
.w-5 { width: 20px; }
.h-5 { height: 20px; }
.w-6 { width: 24px; }
.h-6 { height: 24px; }
.mb-4 { margin-bottom: 16px; }
.fill-current { fill: currentColor; }
.hidden { display: none !important; }

/* --- SAFARI SPECIFIC FIXES --- */
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .form-group select, .filter-select {
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
            padding-right: 2.5rem;
        }
    }
}