@charset "utf-8";
/* ============================================================
   iControl 6 — unified design system (Phase 0, 2026-07-04)
   Tokens + rail shell + shared components.
   Lives ALONGSIDE icontrol5.css — only pages converted to the
   new shell load this file (via _inc/ui_top.asp include).
   Spec: tasks/ui_redesign_proposal.md
   ============================================================ */

:root {
    /* Semantic colors — SAME everywhere in the panel */
    --ic-blue:        #1a73e8;   /* actions, links, active states */
    --ic-blue-dark:   #1557b0;
    --ic-blue-tint:   #e8f0fe;
    --ic-green:       #12664a;   /* Save / Create / Upload / Import — βαθύ teal, ίδιο hue με --ic-teal αλλά πιο σκούρο */
    --ic-green-dark:  #0d4d38;   /* hover */
    --ic-teal:        #24AA7A;   /* Keyword pills (selected/overlay) + iCheck checkboxes — κοινή οικογένεια */
    --ic-teal-dark:   #1b7e5a;   /* hover */
    --ic-teal-light:  #89E6C4;   /* muted/disabled */
    --ic-teal-tint:   #e3f7ef;   /* pale wash (π.χ. "already added" pill bg) */
    --ic-red:         #c0392b;   /* Delete / destructive */
    --ic-red-dark:    #a33025;
    --ic-amber:       #b8860b;   /* warnings */
    --ic-purple:      #7c3aed;   /* AI actions ONLY */
    --ic-purple-dark: #5b21b6;

    /* Status pairs — ένα ζευγάρι bg/fg παντού (badges, alerts, toasts). 2026-07-16 */
    --ic-ok-bg:      #e6f4ea;   --ic-ok-fg:      #1e6b24;   /* success */
    --ic-err-bg:     #fdecea;   --ic-err-fg:     #8a2c20;   /* error + fatal (ενοποιημένα) */
    --ic-warn-bg:    #fef3e0;   --ic-warn-fg:    #8a5a13;   /* warning */
    --ic-info-bg:    #e8f0fe;   --ic-info-fg:    #1557b0;   /* info — μπλε, διακριτό από warning */
    --ic-neutral-bg: #eef0f3;   --ic-neutral-fg: #667085;   /* muted/draft */

    /* Neutrals — ενιαία γαλαζωπή slate κλίμακα (hue ~218), 2026-07-16 */
    --ic-slate-25:   #f6f8fa;
    --ic-slate-50:   #eef1f6;
    --ic-slate-100:  #e2e6ec;
    --ic-slate-200:  #cbd2db;
    --ic-slate-300:  #aab2bf;
    --ic-slate-400:  #8a93a3;
    --ic-slate-500:  #667085;
    --ic-slate-600:  #55606b;
    --ic-slate-700:  #3d4757;
    --ic-slate-800:  #2d3748;
    --ic-slate-900:  #1b2430;

    --ic-bg:            var(--ic-slate-25);
    --ic-card:          #ffffff;
    --ic-border:        var(--ic-slate-100);
    --ic-border-strong: var(--ic-slate-200);
    --ic-text:          var(--ic-slate-800);
    --ic-text-2:        var(--ic-slate-600);  /* δεύτερο επίπεδο: headers, labels */
    --ic-muted:         var(--ic-slate-500);
    --ic-faint:         var(--ic-slate-400);
    --ic-text-inv:      #ffffff;   /* inverted κείμενο πάνω σε σκούρα backgrounds */

    /* Module identity — override per page, headers/tabs ONLY, never buttons */
    --ic-accent:      var(--ic-blue);
    --ic-accent-tint: var(--ic-blue-tint);

    /* Layout */
    --ic-rail-w:      52px;
    --ic-rail-w-open: 210px;
    --ic-radius:       12px;   /* cards */
    --ic-radius-pill:  16px;   /* buttons, chips, tabs */
    --ic-radius-input: 3px;    /* text inputs/selects — διακριτικό, όχι φουσκωτό */

    /* Typography — ορίζεται ΜΙΑ φορά, αλλάζει σε ένα σημείο.
       Google Sans φορτώνεται καθολικά (scripts.asp/ui_top.asp)· Arial =
       το μόνο fallback που χρειάζεται. --ic-font-list = Roboto (λίστες θεμάτων). */
    --ic-font:      'Google Sans', Arial, sans-serif;
    --ic-font-list: 'Roboto', Arial, sans-serif;
}

* { box-sizing: border-box; }

body.ic-body {
    margin: 0;
    background: var(--ic-bg);
    color: var(--ic-text);
    font-family: var(--ic-font);
    font-size: 13px;
}
/* Content links are blue — but NOT button-like or rail elements, which own their
   colours (else the green Save buttons + grey rail items render blue text). Same
   exclusion list as the non-ic-body hover rule further down. */
body.ic-body a:not(.btn):not([class*="flatbutton"]):not(.jbutton):not(.ic-tab):not(.ic-ri):not(.ic-sub):not(.ic-newtheme) { color: var(--ic-text); text-decoration: none; }
body.ic-body a:hover { text-decoration: underline; }

/* Λίστες θεμάτων (Θέματα module) → Roboto αντί για Google Sans.
   Το rail/modhead μένουν Google Sans (κοινό chrome) — μόνο το περιεχόμενο αλλάζει. */
body.ic-font-roboto .ic-main {
    font-family: var(--ic-font-list);
}

/* ============================================================
   Rail — collapsed 52px, expands on hover or .pinned (click logo).
   position:fixed = overlay expand, content never reflows.
   ============================================================ */
.ic-rail {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: var(--ic-rail-w);
    background: #fff;
    border-right: 1px solid var(--ic-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 10px 7px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width .18s ease;
    white-space: nowrap;
    /* pinned, same reason as .ic-modhead — must not inherit page fonts */
    font-family: var(--ic-font);
}
.ic-rail:hover, .ic-rail.pinned {
    width: var(--ic-rail-w-open);
    box-shadow: 2px 0 14px rgba(0,0,0,.08);
}

/* Logo: 2026 SVG wordmark (viewBox 2350×600). The colorful emblem sits at the
   LEFT, so a narrow crop shows just the mark; expanding reveals the "iControl"
   wordmark. At height 26px the full art is ~102px wide, the emblem ~18px — so
   22px crops to the emblem, 108px reveals everything. */
.ic-logo { display: flex; align-items: center; padding: 2px 7px 14px; cursor: pointer; flex: none; }
.ic-logo .ic-mark { width: 22px; overflow: hidden; transition: width .18s ease; }
.ic-logo .ic-mark img { height: 26px; width: auto; display: block; }
.ic-rail:hover .ic-logo .ic-mark, .ic-rail.pinned .ic-logo .ic-mark { width: 108px; }

/* Rail items */
.ic-ri {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 9px;
    border-radius: 18px;
    color: #5f6b7a;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 3px;
    flex: none;
}
.ic-ri svg { width: 19px; height: 19px; flex: none; }
.ic-ri span { opacity: 0; transition: opacity .15s; }
.ic-rail:hover .ic-ri span, .ic-rail.pinned .ic-ri span { opacity: 1; }
body.ic-body .ic-ri:hover { background: #f0f3f7; color: #222; text-decoration: none; }
/* Active item — neutral grey highlight (no module colour in the rail) */
.ic-ri.on { background: #e9edf2; color: #222; font-weight: 600; }
body.ic-body .ic-ri.on:hover { background: #e3e8ee; color: #222; }

/* Sub-items inside an accordion group (visible when the group is open + rail expanded) */
.ic-sub {
    display: flex;
    align-items: center;
    padding: 5px 9px 5px 39px;
    border-radius: 14px;
    color: var(--ic-faint);
    font-size: 12px;
    text-decoration: none;
    opacity: 0;
    transition: opacity .15s;
    flex: none;
}
.ic-rail:hover .ic-sub, .ic-rail.pinned .ic-sub { opacity: 1; }
body.ic-body .ic-sub:hover { background: #f0f3f7; color: #222; text-decoration: none; }
.ic-sub.on { color: #222; font-weight: 600; }

/* Accordion groups — a parent (Keywords / CRM / Media) that owns sub-items.
   The parent is a toggle button; its .ic-subs slide open only when the group is
   .open AND the rail is expanded, so a collapsed rail never reserves height for
   hidden subs. One group open at a time (JS in ui_rail.asp). */
.ic-grp { display: flex; flex-direction: column; flex: none; }
.ic-chev {
    width: 15px; height: 15px; flex: none;
    margin-left: auto;
    opacity: 0;
    transition: opacity .15s, transform .18s ease;
}
.ic-rail:hover .ic-chev, .ic-rail.pinned .ic-chev { opacity: .55; }
.ic-grp.open .ic-chev { transform: rotate(90deg); }
.ic-subs {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s ease;
}
.ic-rail:hover .ic-grp.open .ic-subs,
.ic-rail.pinned .ic-grp.open .ic-subs { max-height: 320px; }

/* New-theme action — prominent green pill at the top of the rail (the panel's
   Create/Save green). White on green; lime on green on hover. Breathing room
   above (below the logo) and below (before Dashboard). Collapsed rail = just + . */
.ic-newtheme { background: var(--ic-green); color: #fff; margin: 20px 0 30px; }
.ic-newtheme svg { width: 20px; height: 20px; }
.ic-newtheme span { font-weight: 600; }
.ic-newtheme:hover,
body.ic-body .ic-newtheme:hover { background: var(--ic-green-dark); color: #cddc39; text-decoration: none; }

/* User + logout, pinned to the bottom of the rail */
.ic-rail-foot { margin-top: auto; border-top: 1px solid var(--ic-border); padding-top: 8px; flex: none; }

/* Pin toggle (button element needs a reset to match the <a> rail items) */
button.ic-ri {
    width: 100%;
    background: none;
    border: none;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.ic-pin svg { width: 19px; height: 19px; flex: none; }
.ic-pin.on { background: #e9edf2; color: #222; }
body.ic-body .ic-pin.on:hover { background: #e3e8ee; color: #222; }

/* ============================================================
   Main content area
   ============================================================ */
.ic-main {
    margin-left: var(--ic-rail-w);
    min-height: 100vh;
    padding: 18px 24px;
}

/* Zero-padding variant: page provides its own full-bleed bars/toolbars
   but keeps normal document scrolling. */
.ic-main.bare { padding: 0; }

/* Embedded mode: dual-use pages (e.g. keywords_edit/explore, which also run
   as iframes inside the article editor or in modals) add .ic-embed on <body>
   via JS when they detect an embedded context — the shell disappears. */
body.ic-embed .ic-rail, body.ic-embed .ic-modhead, body.ic-embed .ic-filterbar { display: none; }
body.ic-embed .ic-main { margin-left: 0; }

/* Filter bar — sits right under the modhead on list pages */
.ic-filterbar {
    display: flex;
    gap: 6px;
    padding: 8px 18px;
    background: #fafbfc;
    border-bottom: 1px solid var(--ic-border);
    flex-wrap: wrap;
    align-items: center;
    flex: none;
    font-family: var(--ic-font);
}
.ic-filterbar select {
    padding: 5px 8px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-input);
    font-size: 12px;
    background: #fff;
    color: #333;
    font-family: inherit;
}

/* Full-height flex variant for SPA-style pages (CRM, Photo Manager):
   the page manages its own inner scrolling, so no padding here. */
.ic-main.flush {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Page title row: title inline with toolbar controls (no breadcrumb bar) */
.ic-titlebar { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.ic-titlebar h1 { font-size: 17px; font-weight: 600; color: #1e3a5f; margin: 0 6px 0 0; }

/* ============================================================
   Buttons — semantic colors, pill shape. ONE system, everywhere.
   Πράσινο=Αποθήκευση · Κόκκινο=Διαγραφή · Μπλε=ενέργεια ·
   Μωβ=AI μόνο · Γκρι=Ακύρωση/secondary
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid transparent;
    border-radius: var(--ic-radius-pill);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.25;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
body.ic-body a.btn:hover { text-decoration: none; }

.btn-save      { background: var(--ic-green); color: #fff; }
.btn-save:hover      { background: var(--ic-green-dark); }
.btn-primary   { background: var(--ic-blue); color: #fff; }
.btn-primary:hover   { background: var(--ic-blue-dark); }
.btn-danger    { background: var(--ic-red); color: #fff; }
.btn-danger:hover    { background: var(--ic-red-dark); }
.btn-ai        { background: var(--ic-purple); color: #fff; }
.btn-ai:hover        { background: var(--ic-purple-dark); }
.btn-secondary { background: #fff; color: #444; border-color: var(--ic-border-strong); }
.btn-secondary:hover { background: #f0f2f5; }
.btn-sm { padding: 4px 12px; font-size: 12px; }

/* ============================================================
   Cards — header takes the module accent
   ============================================================ */
.ic-card {
    background: var(--ic-card);
    border: 1px solid var(--ic-border);
    border-radius: var(--ic-radius);
    overflow: hidden;
}
.ic-card-h { background: var(--ic-accent); color: #fff; padding: 10px 16px; font-size: 14px; font-weight: 600; }
.ic-card-b { padding: 16px; }
.ic-card-f { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--ic-border); align-items: center; }
.ic-card-f .spacer { flex: 1; }

/* ============================================================
   Forms
   ============================================================ */
.grp { margin-bottom: 13px; }
.grp label { display: block; font-size: 12px; color: var(--ic-muted); margin-bottom: 4px; }
.grp input[type=text], .grp input[type=password], .grp input[type=number],
.grp input[type=email], .grp select, .grp textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-input);
    font-size: 13px;
    font-family: inherit;
    background: #fff;
    color: var(--ic-text);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.10);
}
.grp textarea { min-height: 60px; resize: vertical; }
.grp input:focus, .grp select:focus, .grp textarea:focus {
    outline: none;
    border-color: var(--ic-blue);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.10), 0 0 0 3px rgba(26,115,232,.15);
}
.grp .hint { font-size: 11px; color: var(--ic-faint); margin-top: 3px; }
.row2 { display: flex; gap: 12px; }
.row2 > div { flex: 1; }

/* ============================================================
   Module header — ONE unified pattern at the top of EVERY page:
   [τίτλος module] [tabs ενοτήτων] ─────────── [actions]
   Rail switches MODULES; the tabs switch SECTIONS in the module.
   Title = module accent. Actions = page buttons, compact.
   ============================================================ */
.ic-modhead {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 18px;
    background: #fff;
    border-bottom: 1px solid var(--ic-border);
    flex-wrap: wrap;
    flex: none;
    /* pinned: όλο το panel = Google Sans πλέον (2026-07-06) — μόνο τα
       Θέματα (pages/list.asp) override σε Roboto μέσω .ic-font-roboto */
    font-family: var(--ic-font);
}
.ic-modhead .mh-title i { font-size: 16px; }
/* full-bleed inside a padded .ic-main (bare/flush mains have no padding).
   No :first-child — non-rendering script/link/style tags may precede it. */
.ic-main:not(.bare):not(.flush) > .ic-modhead { margin: -18px -24px 16px; }
.ic-modhead .mh-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ic-accent);
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ic-modhead .mh-title svg { width: 17px; height: 17px; }
.ic-modhead .mh-tabs { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.ic-modhead .mh-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 11px;
    color: var(--ic-muted);
}
.ic-modhead .mh-actions .btn { padding: 5px 13px; font-size: 12px; }

.ic-tab {
    padding: 6px 14px;
    border-radius: var(--ic-radius-pill);
    border: 1px solid transparent;
    background: transparent;
    color: #5f6b7a;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.3;
    display: inline-block;
}
body.ic-body .ic-tab:hover { background: #f0f3f7; color: #222; text-decoration: none; }
.ic-tab.on { background: var(--ic-accent-tint); color: var(--ic-accent); cursor: default; }
body.ic-body .ic-tab.on:hover { background: var(--ic-accent-tint); color: var(--ic-accent); }

/* Pill-shaped filter chips (toolbar filters) */
.ic-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: var(--ic-radius-pill);
    border: 1px solid var(--ic-border-strong);
    background: #fff;
    color: #5f6b7a;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}
.ic-chip.on { background: var(--ic-accent-tint); border-color: transparent; color: var(--ic-accent); font-weight: 600; }

/* ============================================================
   Tables
   ============================================================ */
.ic-table { width: 100%; border-collapse: collapse; font-size: 12.5px; background: #fff; }
.ic-table th {
    background: #fafbfc;
    color: var(--ic-muted);
    font-size: 11.5px;
    font-weight: 600;
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid var(--ic-border);
}
.ic-table td { padding: 8px 12px; border-bottom: 1px solid #f0f2f5; vertical-align: middle; }
.ic-table tr:hover td { background: #f7f9fc; }

/* ============================================================
   Badges
   ============================================================ */
.ic-badge { display: inline-block; padding: 1px 9px; border-radius: 11px; font-size: 11px; font-weight: 600; }
.ic-badge.ok   { background: #e6f4ea; color: #1e6b24; }
.ic-badge.err  { background: #fdeeec; color: #8a2c20; }
.ic-badge.warn { background: #fef3e0; color: #8a5a13; }
.ic-badge.mute { background: #eef0f3; color: #667085; }

/* ============================================================
   Toast — one implementation for the whole panel (see icToast()
   in _inc/ui_bottom.asp)
   ============================================================ */
.ic-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    background: #333;
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: opacity .25s, transform .25s;
    pointer-events: none;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
    max-width: 620px;
    text-align: center;
}
.ic-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ic-toast.ok  { background: var(--ic-green); }
.ic-toast.err { background: var(--ic-red); }

/* ============================================================
   DF.1 SHARED COMPONENTS (2026-07-20) — ενοποίηση των τοπικών
   <style> patterns. Κάθε component αντικαθιστά 2+ τοπικά
   αντίγραφα· μελέτη: tasks/df1_meleti.html. Additive — οι
   σελίδες τα υιοθετούν σταδιακά ανά slice.
   ============================================================ */

/* ── Subtabs — tabs ΠΕΡΙΕΧΟΜΕΝΟΥ μέσα στη σελίδα (underline).
   Convention: pills (.ic-tab) ΜΟΝΟ στο modhead για ενότητες module·
   underline (.ic-subtab) για εσωτερικά tabs (generate, linkwise). ── */
.ic-subtabs { display: flex; gap: 2px; border-bottom: 2px solid var(--ic-border); margin-bottom: 14px; }
.ic-subtab {
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ic-muted);
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    text-decoration: none;
    display: inline-block;
    transition: color .15s;
}
.ic-subtab:hover { color: var(--ic-text); }
.ic-subtab.on { color: var(--ic-accent); border-bottom-color: var(--ic-accent); cursor: default; }

/* ── Modal — backdrop + box + head/body/foot. Αντικαθιστά τα τοπικά
   crm .mback/.modal, emails .wiz-*, generate .kw-modal-*, schedule
   .modal-bg/.modal-box. Άνοιγμα: .ic-mback παίρνει .show.
   Variants: .center = κάθετο κεντράρισμα (default = top-aligned). ── */
.ic-mback {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 16px;
}
.ic-mback.show { display: flex; }
.ic-mback.center { align-items: center; padding: 16px; }
.ic-modal {
    background: #fff;
    border-radius: var(--ic-radius);
    width: 480px; max-width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,.25);
    display: flex; flex-direction: column;
    max-height: 94vh;
    overflow: hidden;
}
.ic-modal.wide { width: 640px; }
.ic-mhead { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--ic-slate-50); font-size: 15px; font-weight: 700; flex: none; }
.ic-mx { margin-left: auto; cursor: pointer; color: var(--ic-muted); font-weight: 400; font-size: 22px; line-height: 1; background: none; border: none; padding: 0 2px; font-family: inherit; }
.ic-mx:hover { color: var(--ic-text); }
.ic-mbody { padding: 14px 16px; overflow-y: auto; }
.ic-mfoot { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--ic-slate-50); align-items: center; flex: none; }
.ic-mfoot .spacer { flex: 1; }

/* ── Sidelist — two-panel layout (αριστερή λίστα + δεξί περιεχόμενο).
   Από crm/index + crm/templates (~40 ίδιες γραμμές ο καθένας).
   Το selected χρωματίζεται από το module accent. ── */
.ic-split { display: flex; height: 100%; }
.ic-split .sl-main { flex: 1; overflow-y: auto; padding: 18px 22px; }
.ic-sidelist { width: 280px; flex: none; background: #fff; border-right: 1px solid var(--ic-border); display: flex; flex-direction: column; }
.ic-sidelist .sl-top { padding: 10px; border-bottom: 1px solid var(--ic-slate-50); }
.ic-sidelist .sl-search { width: 100%; height: 32px; padding: 0 8px; border: 1px solid var(--ic-border-strong); border-radius: var(--ic-radius-input); font-size: 13px; font-family: inherit; }
.ic-sidelist .sl-list { overflow-y: auto; flex: 1; }
.ic-sidelist .sl-item { padding: 8px 10px; font-size: 13px; cursor: pointer; border-bottom: 1px solid var(--ic-slate-50); display: flex; align-items: center; gap: 6px; }
.ic-sidelist .sl-item:hover { background: var(--ic-accent-tint); }
.ic-sidelist .sl-item.sel { background: var(--ic-accent); color: #fff; }
.ic-sidelist .sl-item.child { padding-left: 24px; font-size: 12.5px; color: var(--ic-text-2); }
.ic-sidelist .sl-item.sel.child { color: #fff; }

/* ── Spinner (3 τοπικά αντίγραφα στα keywords) ── */
.ic-spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid var(--ic-border-strong);
    border-top-color: var(--ic-blue);
    border-radius: 50%;
    animation: ic-spin .6s linear infinite;
    vertical-align: middle;
}
@keyframes ic-spin { to { transform: rotate(360deg); } }

/* ── Empty / loading state (6 τοπικές παραλλαγές) ── */
.ic-empty { padding: 40px 20px; text-align: center; color: var(--ic-muted); font-size: 13px; }

/* ── KPI stat card (crm Σύνοψη, linkwise, dashboard) ── */
.ic-kpi { background: #fff; border: 1px solid var(--ic-border); border-radius: var(--ic-radius); padding: 16px 20px; min-width: 130px; }
.ic-kpi .n { font-size: 28px; font-weight: 700; color: var(--ic-accent); line-height: 1; }
.ic-kpi .l { font-size: 11.5px; color: var(--ic-muted); margin-top: 6px; }
.ic-kpi.warn .n { color: var(--ic-red); }
.ic-kpi.ok .n { color: var(--ic-green); }

/* ── Toggle switch — καθαρό CSS, αντικαθιστά τα base64 PNG toggles
   (media/menu). Markup: <label class="ic-switch"><input type="checkbox">
   <span class="sl"></span></label> ── */
.ic-switch { position: relative; display: inline-block; width: 40px; height: 22px; flex: none; vertical-align: middle; }
.ic-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.ic-switch .sl { position: absolute; inset: 0; background: var(--ic-slate-200); border-radius: 22px; transition: background .2s; cursor: pointer; }
.ic-switch .sl:before {
    content: "";
    position: absolute;
    width: 16px; height: 16px;
    left: 3px; top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.ic-switch input:checked + .sl { background: var(--ic-teal); }
.ic-switch input:checked + .sl:before { transform: translateX(18px); }
.ic-switch input:focus-visible + .sl { box-shadow: 0 0 0 3px rgba(26,115,232,.25); }

/* ── Keyword pills — ο picker που υπάρχει 3 φορές (photomanager,
   emails Mode D, upload_nw_photo). Το teal εδώ ΔΕΝ είναι accent —
   είναι η κλειδωμένη ταυτότητα των keyword pills panel-wide. ── */
.ic-kwpill { display: inline-block; margin: 2px 3px; padding: 2px 8px; border-radius: var(--ic-radius-pill); font-size: 11px; border: 1px solid var(--ic-faint); background: #fff; color: var(--ic-text); cursor: pointer; font-family: inherit; }
.ic-kwpill.sel { background: var(--ic-teal); color: #fff; border-color: var(--ic-teal-dark); }
.ic-kwpill.sel:hover { background: var(--ic-teal-dark); }
.ic-kwpill:not(.sel):not(.added):hover { background: var(--ic-teal-tint); border-color: var(--ic-teal); }
.ic-kwpill.added { background: var(--ic-ok-bg); color: var(--ic-text-2); cursor: default; }

/* ── Banner — inline ειδοποίηση μέσα στη σελίδα (emails warn/err,
   linkwise alert). Για στιγμιαία μηνύματα υπάρχει το .ic-toast. ── */
.ic-banner { padding: 12px 14px; border-radius: var(--ic-radius); font-size: 13px; line-height: 1.5; border: 1px solid; }
.ic-banner.warn { background: var(--ic-warn-bg); border-color: var(--ic-amber); color: var(--ic-warn-fg); }
.ic-banner.err  { background: var(--ic-err-bg); border-color: var(--ic-red); color: var(--ic-err-fg); }
.ic-banner.info { background: var(--ic-info-bg); border-color: var(--ic-blue); color: var(--ic-info-fg); }

/* ── Sortable table headers — κοινά βελάκια ⇅/↑/↓ (mediastats,
   emails, linkwise, pages/list). Το JS του sort μένει ανά σελίδα·
   εδώ μόνο η κοινή όψη. ── */
th.ic-sort { cursor: pointer; user-select: none; position: relative; padding-right: 18px !important; }
th.ic-sort:hover { color: var(--ic-blue); }
th.ic-sort:after { content: '⇅'; position: absolute; right: 5px; opacity: .4; font-size: 11px; }
th.ic-sort.asc, th.ic-sort.desc { color: var(--ic-blue); }
th.ic-sort.asc:after  { content: '↑'; opacity: 1; }
th.ic-sort.desc:after { content: '↓'; opacity: 1; }

/* ── Expand [+] κουμπάκι (mediastats + linkwise) ── */
.ic-expand {
    width: 24px; height: 22px;
    border: 1px solid var(--ic-border-strong);
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    color: var(--ic-blue);
    padding: 0;
    line-height: 1;
    font-size: 13px;
    font-family: inherit;
}
.ic-expand:hover { background: var(--ic-blue-tint); }

/* ── Badge extra: info (μετρητές, counts) ── */
.ic-badge.info { background: var(--ic-info-bg); color: var(--ic-info-fg); }

/* ── Searchbar / chips / combobox / pager — προήχθησαν από το pages/list.asp
   (DF.1)· ήταν ήδη γραμμένα ως ic-* components, απλώς ζούσαν τοπικά. ── */
.ic-searchbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 10px 18px; background: #fff; border-bottom: 1px solid var(--ic-border); }
.ic-searchbar[hidden] { display: none; }
body.ic-embed .ic-searchbar { display: none; }
.sb-field { position: relative; flex: 1 1 320px; min-width: 220px; }
.sb-field .sb-ico { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--ic-faint); pointer-events: none; display: flex; }
.sb-field .sb-ico svg { width: 16px; height: 16px; display: block; }
.sb-field input { width: 100%; height: 36px; padding: 0 12px 0 36px; border: 1px solid var(--ic-border-strong); border-radius: var(--ic-radius-input); font-family: inherit; font-size: 13px; background: #fff; color: var(--ic-text); }
.sb-field input:focus { outline: none; border-color: var(--ic-blue); box-shadow: 0 0 0 3px rgba(26,115,232,.15); }
.sb-label { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--ic-faint); text-transform: uppercase; }
.sb-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border: 1px solid var(--ic-border-strong); border-radius: var(--ic-radius-pill); font-size: 12px; color: #5f6b7a; cursor: pointer; user-select: none; }
.sb-chip.on { background: var(--ic-blue-tint); border-color: transparent; color: var(--ic-blue); font-weight: 600; }
.sb-chip input { margin: 0; accent-color: var(--ic-blue); }
.sb-count { margin-left: auto; font-size: 12.5px; color: var(--ic-muted); }
.sb-count b { color: var(--ic-text); }

.ic-combo { position: relative; display: inline-block; }
.ic-combo-inp { width: 100%; padding: 6px 22px 6px 8px; border: 1px solid var(--ic-border-strong); border-radius: var(--ic-radius-input); font-size: 12px; background: #fff; color: #333; font-family: inherit; cursor: pointer; }
.ic-combo-inp::placeholder { color: #333; opacity: 1; }
.ic-combo-inp:focus { outline: none; border-color: var(--ic-blue); box-shadow: 0 0 0 2px rgba(26,115,232,.15); }
.ic-combo-caret { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 9px; color: var(--ic-faint); pointer-events: none; }
.ic-combo-list { position: absolute; top: calc(100% + 2px); left: 0; min-width: 100%; width: max-content; max-width: 340px; max-height: 264px; overflow-y: auto; background: #fff; border: 1px solid var(--ic-border); border-radius: 6px; box-shadow: 0 6px 20px rgba(16,42,30,.12); z-index: 200; padding: 4px; }
.ic-combo-list[hidden] { display: none; }
.ic-combo-opt { padding: 6px 10px; font-size: 12.5px; color: #33404d; border-radius: 4px; cursor: pointer; white-space: nowrap; }
.ic-combo-opt.ic-combo-child { padding-left: 22px; color: #5b6675; }
.ic-combo-opt:hover, .ic-combo-opt.active { background: var(--ic-blue-tint); color: var(--ic-blue); }
.ic-combo-opt.ic-combo-hidden { display: none; }

.ic-pager { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; padding: 10px 0; border-top: 2px solid var(--ic-blue); margin-top: 10px; font-size: 12.5px; }
.ic-pager a, .ic-pager span.pg-cur, .ic-pager span.pg-off {
    display: inline-block; min-width: 26px; text-align: center; padding: 4px 8px; border-radius: 8px;
    border: 1px solid var(--ic-border-strong); background: #fff; color: #444; text-decoration: none;
}
.ic-pager a:hover { border-color: var(--ic-blue); color: var(--ic-blue); }
.ic-pager span.pg-cur { background: var(--ic-blue); border-color: var(--ic-blue); color: #fff; font-weight: 700; }
.ic-pager span.pg-off { opacity: .4; }
.ic-pager span.pg-gap { opacity: .5; padding: 4px 2px; }
.ic-pager .pg-total { margin-left: auto; font-weight: 700; color: #444; }

/* ── DF.2 Uploaders (2026-07-20) — κοινά για τα 5 uploader iframes:
   upzone (sticky ζώνη πάνω), drop (dashed dropzone), result (κάρτα
   αποτελέσματος), progress (λεπτή μπάρα). Εγκρίθηκαν όλα από Kostas. ── */
.ic-upzone { flex-shrink: 0; background: #fff; border-bottom: 2px solid var(--ic-border); padding: 14px 16px 12px; }
.ic-upzone h3 { font-size: 12px; font-weight: 700; color: var(--ic-text-2); text-transform: uppercase; letter-spacing: .5px; margin: 0 0 8px; }

.ic-drop {
    border: 2px dashed var(--ic-slate-300);
    border-radius: 8px;
    background: var(--ic-slate-25);
    padding: 22px 14px;
    text-align: center;
    color: var(--ic-muted);
    cursor: pointer;
    transition: all .15s ease;
    line-height: 1.6;
}
.ic-drop.over, .ic-drop.drag { border-color: var(--ic-teal); background: var(--ic-teal-tint); color: var(--ic-teal-dark); }
.ic-drop strong { color: var(--ic-text); }

.ic-result { background: #fff; border: 1px solid var(--ic-border); border-radius: 8px; padding: 10px; display: flex; gap: 10px; align-items: center; }
.ic-result.error { border-color: var(--ic-red); background: var(--ic-err-bg); }
.ic-result.uploading { border-color: var(--ic-amber); background: var(--ic-warn-bg); }
.ic-result .r-icon { width: 36px; height: 36px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--ic-slate-50); border-radius: 6px; font-size: 18px; }
.ic-result .r-thumb { width: 100px; height: 68px; object-fit: cover; border: 1px solid var(--ic-border); border-radius: 4px; flex: none; }
.ic-result .r-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.ic-result .r-name { font-weight: 600; color: var(--ic-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ic-result .r-url, .ic-result .r-size { font-size: 10px; color: var(--ic-faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ic-result .r-error { color: var(--ic-err-fg); font-size: 11px; }
.ic-result .r-status { color: var(--ic-warn-fg); font-size: 11px; font-style: italic; }
.ic-result .r-controls { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.ic-progress { height: 4px; background: var(--ic-slate-100); border-radius: 2px; overflow: hidden; }
.ic-progress > div { height: 100%; width: 0; background: var(--ic-green); transition: width .15s ease; }
.ic-progress.warn > div { background: var(--ic-amber); }

/* ============================================================
   LEGACY COMPAT (Φάση 6, 2026-07-04) — το icontrol5 λεξιλόγιο,
   ορισμένο ΜΙΑ φορά πάνω στα tokens. Το φορτώνουν τα εσωτερικά
   των frames.asp panes + uploaders + users + login μέχρι να
   περάσουν σε κανονικά ic6 components — σβήνε entries από εδώ
   καθώς πεθαίνουν από το markup. Το pages/edit.asp workspace
   (edit, edit_pagelist, upload, upload_main_pic) μένει στο
   icontrol5.css μέχρι τον δικό του κύκλο.
   ============================================================ */

/* Compat σελίδες = χωρίς body.ic-body: βασική τυπογραφία + στοιχεία
   φόρμας ενιαία, χωρίς αλλαγές στο markup τους. */
body:not(.ic-body) {
    font-family: var(--ic-font);
    font-size: 12px;
    color: var(--ic-text);
}
body:not(.ic-body) td { font-size: 12px; }
body:not(.ic-body) a { color: #222; text-decoration: none; }
/* only real links turn blue on hover — buttons-that-are-links keep their own
   text color (πράσινα/κόκκινα κουμπιά έμεναν λευκά, όχι μπλε στο hover) */
body:not(.ic-body) a:not(.btn):not([class*="flatbutton"]):not(.jbutton):not(.ic-tab):not(.ic-ri):not(.ic-sub):hover { color: var(--ic-blue); }

body:not(.ic-body) input[type=text],
body:not(.ic-body) input[type=password],
body:not(.ic-body) input[type=number],
body:not(.ic-body) select,
body:not(.ic-body) textarea {
    /* ΜΟΝΟ structural (κοινό παντού). font-family/font-size/color ΔΕΝ ορίζονται
       εδώ — κληρονομούνται από το body (Google Sans). Έτσι τα site-facing πεδία
       (τίτλοι/social/credit) δηλώνουν το δικό τους font ΧΩΡΙΣ !important —
       η κληρονομιά χάνει πάντα από μια explicit class. (Αρχή Kostas 2026-07-07) */
    padding: 5px 9px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-input);
    background: #fff;
    box-sizing: border-box;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.10);
}
body:not(.ic-body) input[type=text]:focus,
body:not(.ic-body) input[type=password]:focus,
body:not(.ic-body) select:focus,
body:not(.ic-body) textarea:focus {
    outline: none;
    border-color: var(--ic-blue);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.10), 0 0 0 3px rgba(26,115,232,.15);
}
/* Εξαιρούνται τα δικά μας components (.btn/.ic-subtab/.ic-mx/.ic-expand) —
   αλλιώς <button class="ic-subtab"> κ.λπ. σε non-ic-body σελίδες (uploaders)
   έπαιρναν ΚΑΙ το legacy chrome ΚΑΙ το component style (διπλό look).
   ⚠️ Οι εξαιρέσεις ΜΟΝΟ με :where(:not(...)) — μηδενική specificity, ώστε το
   rule να μένει (0,1,2) και να ΜΗΝ ξαναπεράσει το rail-restore του edit.asp
   πιο κάτω (σκέτα :not() το είχαν σπάσει — τα accordion pills ξαναγύρισαν). */
body:not(.ic-body) input[type=button]:where(:not(.btn)),
body:not(.ic-body) input[type=submit]:where(:not(.btn)),
body:not(.ic-body) button:where(:not(.btn)):where(:not(.ic-subtab)):where(:not(.ic-mx)):where(:not(.ic-expand)) {
    padding: 5px 13px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-pill);
    background: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}
body:not(.ic-body) input[type=button]:where(:not(.btn)):hover,
body:not(.ic-body) input[type=submit]:where(:not(.btn)):hover,
body:not(.ic-body) button:where(:not(.btn)):where(:not(.ic-subtab)):where(:not(.ic-mx)):where(:not(.ic-expand)):hover { background: #f0f2f5; }

/* Το compat base από πάνω (button/a/input) είναι σκόπιμα ισχυρό, αλλά ΔΙΑΡΡΕΕΙ
   στο rail όταν το page δεν έχει .ic-body (π.χ. pages/edit.asp, που κρατά δικό
   του <body> για να μην αλλάξει η τυπογραφία του editor): τα accordion parents
   (Keywords/CRM/Media) + ο pin — που είναι <button> — έπαιρναν περίγραμμα, λευκό
   φόντο & bold, και τα <a> items πιο σκούρο χρώμα. Το rail είναι αυτοτελές chrome:
   το επαναφέρουμε στην όψη .ic-ri για non-ic-body pages ώστε να δείχνει ίδιο με
   τα shell pages. (body:not(.ic-body) .ic-rail X.ic-ri = υψηλότερη specificity
   από το compat base.) Τα hover states επίσης, γιατί το body.ic-body .ic-ri:hover
   δεν πιάνει εδώ. */
body:not(.ic-body) .ic-rail button.ic-ri { padding:8px 9px; border:none; background:none; border-radius:18px; color:#5f6b7a; font-size:13px; font-weight:400; }
body:not(.ic-body) .ic-rail .ic-ri { color:#5f6b7a; }
body:not(.ic-body) .ic-rail .ic-ri.on { color:#222; }
body:not(.ic-body) .ic-rail .ic-newtheme { color:#fff; }
body:not(.ic-body) .ic-rail .ic-sub { color:var(--ic-faint); }
body:not(.ic-body) .ic-rail .ic-sub.on { color:#222; }
body:not(.ic-body) .ic-rail .ic-ri:hover,
body:not(.ic-body) .ic-rail .ic-sub:hover { background:#f0f3f7; color:#222; text-decoration:none; }
body:not(.ic-body) .ic-rail .ic-ri.on:hover { background:#e3e8ee; color:#222; }
body:not(.ic-body) .ic-rail button.ic-pin.on { background:#e9edf2; color:#222; }
body:not(.ic-body) .ic-rail .ic-pin.on:hover { background:#e3e8ee; color:#222; }

/* — named legacy classes, token values — */
.iTitle { font-size: 17px; font-weight: 600; color: var(--ic-blue); }
.iTitle a { font-size: 17px; color: var(--ic-red); }
.iTitle a:hover { color: var(--ic-red-dark); }
.iTitleSmall { font-size: 14px; font-weight: 600; color: #1e3a5f; }
.iSelect { font-size: 12px; font-weight: 600; color: #333; }
.listHeader { font-weight: 700; font-size: 12px; color: var(--ic-muted); border-bottom: 1px solid var(--ic-border); }
.iBox { background: #fff; padding: 16px; margin: 16px 0; border: 1px solid var(--ic-border); border-radius: var(--ic-radius); }
.preview { font-size: 10px; color: var(--ic-muted); background: #fff; border: 1px solid var(--ic-border-strong); border-radius: 10px; padding: 1px 7px; text-decoration: none; }
.preview:hover { color: #fff; background: var(--ic-blue); border-color: var(--ic-blue); text-decoration: none; }
.bodyMenu { margin: 0; padding: 6px 10px; background: #fafbfc; border-bottom: 1px solid var(--ic-border); }
.menuAdd, .menuAdd a, .menuAdd a:hover { color: #333; font-weight: 600; font-size: 13px; }
.iMenuOptions { font-size: 11px; color: #333; }
.iMenuOptions a { color: #333; text-decoration: underline; }
.iMenuOptions a:hover { color: var(--ic-blue); text-decoration: none; }
.iMenuOptionsSelected { font-size: 11px; color: var(--ic-blue); font-weight: 700; }
.iMenuOptionsSelected td { color: var(--ic-blue); }
.entityHeader { font-weight: 700; font-size: 14px; color: var(--ic-blue); border-top: 1px solid var(--ic-blue); }
.white, .white a, .white td { color: #fff; }

.flattextbox {
    padding: 5px 9px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-input);
    font-size: 12px;
    font-family: inherit;
    background: #fff;
    color: var(--ic-text);
    box-sizing: border-box;
    height: auto;
}
.flattextbox2 { font-size: 11px; font-family: inherit; background: #fff; }
.flatdrop { border: 1px solid var(--ic-border-strong); border-radius: var(--ic-radius-input); font-size: 12px; font-family: inherit; font-weight: 400; height: auto; }

.flatbutton, .flatbutton2 {
    padding: 5px 13px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-pill);
    background: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}
.flatbutton:hover, .flatbutton2:hover { background: #f0f2f5; }
.flatbuttonsave {
    border: none;
    font-weight: 600;
    padding: 8px 18px;
    /* !important: το compat base input[type=submit]/button styling έχει
       μεγαλύτερη specificity και θα έκανε το κουμπί άσπρο (bit το edit.asp save) */
    color: #fff !important;
    font-size: 14px !important;
    font-family: inherit;
    background-color: var(--ic-green) !important;
    border-radius: var(--ic-radius-pill) !important;
    cursor: pointer;
}
.flatbuttonsave:hover { background-color: var(--ic-green-dark) !important; }
a.flatbuttonsave, a.flatbuttonsave:hover { color: #fff !important; text-decoration: none; }
.flatbuttonsave2 {
    padding: 4px 11px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-pill);
    background: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
	text-decoration: none !important;
}
.flatbuttonsave2:hover { background: #f0f2f5; }
.flatbuttondelete {
    border: none;
    font-weight: 600;
    padding: 8px 18px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--ic-red);
    border-radius: var(--ic-radius-pill);
    cursor: pointer;
}
.flatbuttondelete:hover { background-color: var(--ic-red-dark); }

/* ic-btn — reusable γκρι κουμπί/link. Αντικαθιστά το legacy «jbutton» +
   jQuery UI $(...).button(). Όπου πριν έμπαινε class="jbutton", τώρα ic-btn.
   Κρατά εσκεμμένα το γκρι jQuery-UI look (επιλογή 1B)· η flat εκδοχή είναι
   το .flatbutton. !important όπως στο .flatbuttonsave: το legacy-compat
   `body:not(.ic-body) button|a` έχει μεγαλύτερη specificity και αλλιώς θα
   έκανε το κουμπί λευκό (button-reset) ή το link μπλε στο hover. */
.ic-btn {
    display: inline-block;
    padding: 5px 12px !important;
    border: 1px solid #d3d3d3 !important;
    background: #e6e6e6 !important;
    color: #555 !important;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    vertical-align: middle;
}
.ic-btn:hover { border-color: #999 !important; background: #dadada !important; color: #212121 !important; }
.ic-btn img { vertical-align: middle; border: 0; }

.inlineMenu {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--ic-border-strong);
    border-radius: var(--ic-radius-pill);
    background: #fff;
    color: #444;
    font-weight: 600;
    font-size: 13px;
}
.inlineMenuSelected {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid transparent;
    border-radius: var(--ic-radius-pill);
    background: var(--ic-blue-tint);
    color: var(--ic-blue);
    font-weight: 600;
    font-size: 13px;
}

.errorlist {
    border: 1px solid #f0c36d;
    background: #fff7e6;
    color: #7a5a13;
    font-weight: 600;
    padding: 10px 10px 10px 28px;
    border-radius: 8px;
    box-sizing: border-box;
}
.fatalerrorlist {
    border: 1px solid #e6a59e;
    background: #fdecea;
    color: #8a2c20;
    font-weight: 600;
    padding: 10px 10px 10px 28px;
    border-radius: 8px;
    box-sizing: border-box;
}
.errorlist li, .fatalerrorlist li { list-style: square; list-style-position: inside; margin-left: 0; }
