/* ===========================================
   ELENCO EMAIL (MESSAGELIST)
   File: messagelist.css

   Layout ORIGINALE Roundcube - solo override minimi
   =========================================== */

/* ===========================================
   COLORI SFONDO
   =========================================== */
.messagelist tbody tr {
    background: #fff !important;
}

.messagelist tbody tr:hover {
    background: #f5f5f5 !important;
}

.messagelist tbody tr.selected {
    background: #e8e8e8 !important;
}

/* ===========================================
   EMAIL CONTRASSEGNATE (FLAGGED)
   =========================================== */
.messagelist tr.flagged {
    background: #FFF8E1 !important;
    border-left: 3px solid #FFC107 !important;
}

.messagelist tr.flagged:hover {
    background: #FFECB3 !important;
}

/* Override: testo normale, non rosso */
.messagelist tr.flagged td,
.messagelist tr.flagged td.subject span.fromto,
.messagelist tr.flagged td.subject span.subject,
.messagelist tr.flagged td.subject span.subject a,
.messagelist tr.flagged td.subject span.date {
    color: inherit !important;
}

/* ===========================================
   DARK MODE
   =========================================== */
html.dark-mode .messagelist tbody tr {
    background: #1e1e1e !important;
}

html.dark-mode .messagelist tbody tr:hover {
    background: #2a2a2a !important;
}

html.dark-mode .messagelist tbody tr.selected {
    background: #333 !important;
}

html.dark-mode .messagelist tr.flagged {
    background: rgba(255, 193, 7, 0.15) !important;
}

html.dark-mode .messagelist tr.flagged:hover {
    background: rgba(255, 193, 7, 0.25) !important;
}
