/* goorange SaaS ERP - Original Theme mit Input-Anpassung */

/* --- BASIS-LOGIK: HINTERGRÜNDE & CARDS --- */
.w3-theme-l5 {color:#000 !important; background-color:#f6faf7 !important}
.w3-theme-l4 {color:#000 !important; background-color: #bbffcf !important}
.w3-theme-l3 {color:#000 !important; background-color:#dcf0e2 !important}
.w3-theme-l2 {color:#000 !important; background-color:#ffa74e !important}
.w3-theme-l1 {color:#000 !important; background-color:#82c694 !important}

/* --- TEXT & BRANDING --- */
.w3-theme {color:#fff !important; background-color:#2D9344 !important}
.w3-text-theme {color:#2D9344 !important}
.w3-text-dark {color: #11381a !important}
.w3-border-theme {border-color:#2D9344 !important}

/* Action-Colour: Safety Orange */
.w3-theme-action {color:#fff !important; background-color:#FF7900 !important}

/* --- DUNKLE BEREICHE (SIDEBAR / NAV) --- */
.w3-theme-d1 {color:#fff !important; background-color:#267d3a !important}
.w3-theme-d2 {color:#fff !important; background-color:#1e5b2d !important}
.w3-theme-d3 {color:#fff !important; background-color:#164421 !important}
.w3-theme-d4 {color:#fff !important; background-color:#11381a !important}
.w3-theme-d5 {color:#fff !important; background-color:#0a200f !important}

/* --- SPEZIAL-KLASSEN & FIXES --- */
.w3-theme-light {color:#000 !important; background-color:#eef7f0 !important}
.w3-theme-dark {color:#fff !important; background-color:#1e5b2d !important}

/* Hover-Effekte */
.w3-hover-theme:hover {color:#fff !important; background-color:#FF7900 !important}
.w3-hover-text-theme:hover {color:#FF7900 !important}
.w3-hover-border-theme:hover {border-color:#FF7900 !important}

/* Sektions-Header mit Reflektor-Detail */
.w3-orange-header {
    background-color: #FF7900 !important;
    color: #FFFFFF !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 3px solid #D1D5DB !important;
}

/* --- DEINE NEUE ANPASSUNG --- */
input, select, textarea {
    background-color: #f6faf7 !important;
    color: #000 !important;
    border: none !important;              /* Rahmen komplett entfernt */
    border-radius: 0px;                   /* Leicht abgerundet für modernen Look */
    outline: none !important;             /* Entfernt den Standard-Browser-Rahmen */
    transition: background-color 0.2s;    /* Sanfter Übergang beim Klicken */
}

/* Fokus-Effekt: NUR der Strich unten wird grün */
input:focus, select:focus, textarea:focus {
    background-color: #f6faf7 !important;
    border-bottom: 2px solid #2D9344 !important;
    outline: none !important;
}