/**
 * Filet de secours : masque le menu pré-filtre (bouton teal à gauche de la recherche)
 * pour les utilisateurs portail, même si le JS custom ne s’applique pas (cache, bundle).
 *
 * La classe body.esp-user-portal est posée par views/list.js (utilisateur type portal).
 * #main.main-portal = interface site portail (views/site-portal/master.js).
 * body.portal-cps-theme = thème CPS chargé par la navbar portail.
 */
body.esp-user-portal .search-row .input-group-btn.left-dropdown,
#main.main-portal .search-row .input-group-btn.left-dropdown,
body.portal-cps-theme .search-row .input-group-btn.left-dropdown {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

/*
 * Confort lecture portail sans portal-cps-theme.css (avant chargement navbar, ou vue sans navbar custom).
 * Le thème CPS complet est dans portal-cps-theme.css (injecté avec body.portal-cps-theme).
 */
body.esp-user-portal:not(.portal-cps-theme) {
    font-size: 12px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.esp-user-portal:not(.portal-cps-theme) #main,
body.esp-user-portal:not(.portal-cps-theme) .container.content {
    background-color: #f5f6f8;
}

body.esp-user-portal:not(.portal-cps-theme) .list > table thead th,
body.esp-user-portal:not(.portal-cps-theme) .table thead th {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: none;
    background-color: #eee;
}

body.esp-user-portal:not(.portal-cps-theme) .list > table tbody td,
body.esp-user-portal:not(.portal-cps-theme) .table tbody td {
    font-size: 12px;
    color: #555;
    line-height: 1.45;
}
