/* =========================================
   HEURESTIS - SICHERES MINIMAL-CSS
   ========================================= */

/* 1. SCHRIFTART ANPASSEN */
:root {
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* 2. UNERWÜNSCHTE ICONS IM EINGABEFELD VERSTECKEN 
   Wir nutzen die exakten aria-labels, um keine anderen Buttons zu zerstören. */
button[aria-label="Attach files"],
button[aria-label="Upload"],
button[aria-label="Conversation Settings"],
button[aria-label="Parameters"],
button[aria-label="Presets"],
button[aria-label="Set model parameters"] {
    display: none !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

/* 3. MODELLAUSWAHL (DROPDOWN) OPTISCH EINFRIEREN */
[data-testid="model-selector-dropdown"] {
    pointer-events: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: 600 !important;
}

/* 4. DROPDOWN-PFEIL IN DER MODELLAUSWAHL VERSTECKEN */
[data-testid="model-selector-dropdown"] svg {
    display: none !important;
}