/* =========================================================
   SEO Pulse — Design system
   Charte : bleu #2565C7 / vert #4DB259 / blanc
   Sobre, coloré, moderne, responsive mobile-first
   ========================================================= */
:root {
    --brand-blue: #2565C7;
    --brand-blue-dark: #1B4E9E;
    --brand-blue-soft: #E3ECFA;
    --brand-green: #4DB259;
    --brand-green-dark: #3A8E44;
    --brand-green-soft: #E1F3E4;
    --sidebar-bg: #0F2C57;
    --sidebar-bg-hover: #163B75;
    --sidebar-text: #C4D1E8;
    --sidebar-text-active: #FFFFFF;

    --bg: #F4F7FB;
    --surface: #FFFFFF;
    --border: #E1E7EF;
    --border-strong: #C8D2E0;
    --text: #14213D;
    --text-muted: #6B7A94;
    --text-light: #94A0B6;

    --success: #4DB259;
    --success-bg: #E1F3E4;
    --success-dark: #3A8E44;
    --warning: #E8A230;
    --warning-bg: #FDF3DD;
    --warning-dark: #B37817;
    --danger: #DC3545;
    --danger-bg: #FBE1E3;
    --danger-dark: #A72631;
    --info: #2565C7;
    --info-bg: #E3ECFA;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(20, 33, 61, .06);
    --shadow: 0 2px 8px rgba(20, 33, 61, .08);
    --shadow-lg: 0 8px 24px rgba(20, 33, 61, .10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-blue-dark); }

h1, h2, h3, h4 { color: var(--text); }
h1 { font-size: 22px; font-weight: 700; }
h2 { font-size: 20px; font-weight: 700; }
h3 { font-size: 16px; font-weight: 600; margin-bottom: 14px; }

.muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- Structure ---------- */
.app { display: flex; min-height: 100vh; }

/* ---------- Sidebar ---------- */
.sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease;
}

.sidebar-brand {
    padding: 22px 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: center;
}
.sidebar-brand img { max-width: 160px; height: auto; display: block; margin: 0 auto; }
.sidebar-brand-text { color:#fff; font-size:18px; font-weight:700; letter-spacing:.3px; }

.nav { display: flex; flex-direction: column; padding: 12px 10px; flex: 1; gap: 2px; }
.nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px;
    color: var(--sidebar-text); font-size: 14px; font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--sidebar-bg-hover); color: var(--sidebar-text-active); text-decoration: none; }
.nav-link.active {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 101, 199, .4);
}
.nav-link .nav-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: .9; }
.nav-logout { margin-top: auto; padding: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.nav-link-btn {
    width: 100%; text-align: left; background: none; border: 0;
    cursor: pointer; font-family: inherit; font-size: 14px;
}

/* ---------- Main ---------- */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
    display: flex; align-items: center; gap: 16px;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 0 24px; height: 64px;
    box-shadow: var(--shadow-sm);
}
.topbar-title { font-size: 16px; font-weight: 600; flex: 1; }
.topbar-user {
    display: flex; align-items: center; gap: 10px;
    color: var(--text); font-weight: 500;
}
.topbar-user .avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--text); }
.burger svg { width: 24px; height: 24px; }

/* Sélecteur de site actif dans la topbar */
.site-switcher {
    position: relative;
    margin-right: auto;
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px 6px 12px;
    background: var(--brand-blue-soft); color: var(--brand-blue-dark);
    border-radius: var(--radius-sm); font-weight: 600; font-size: 13px;
    cursor: pointer;
}
.site-switcher:hover { background: #d4e2f6; }
.site-switcher .site-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-green); }
.site-switcher .site-arrow { width: 14px; height: 14px; opacity: .7; }
.site-switcher-menu {
    position: absolute; top: 100%; left: 0; margin-top: 6px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    min-width: 280px; z-index: 30; display: none;
    overflow: hidden;
}
.site-switcher-menu.open { display: block; }
.site-switcher-menu button {
    display: block; width: 100%; text-align: left;
    background: none; border: 0; padding: 10px 14px;
    font-family: inherit; font-size: 13px; color: var(--text); cursor: pointer;
}
.site-switcher-menu button:hover { background: var(--brand-blue-soft); }
.site-switcher-menu button.current { background: var(--brand-blue-soft); font-weight: 600; }

.content { padding: 24px; }

/* ---------- Cards ---------- */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.card-center { text-align: center; padding: 56px 24px; }
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }

.page-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.page-head h2 { margin-bottom: 4px; }

/* ---------- KPI cards ---------- */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px; margin-bottom: 24px;
}
.stat-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex; flex-direction: column; gap: 8px;
    transition: transform .15s, box-shadow .15s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-card .stat-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
}
.stat-card .stat-icon svg { width: 22px; height: 22px; }
.stat-card.stat-blue .stat-icon { background: var(--brand-blue-soft); color: var(--brand-blue); }
.stat-card.stat-green .stat-icon { background: var(--brand-green-soft); color: var(--brand-green-dark); }
.stat-card.stat-orange .stat-icon { background: var(--warning-bg); color: var(--warning-dark); }
.stat-card.stat-red .stat-icon { background: var(--danger-bg); color: var(--danger-dark); }
.stat-value { font-size: 26px; font-weight: 700; color: var(--text); line-height: 1.1; }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .3px; }
.stat-trend { font-size: 12px; font-weight: 600; margin-top: 4px; }
.stat-trend.up { color: var(--success-dark); }
.stat-trend.down { color: var(--danger-dark); }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 20px; font-size: 14px; font-weight: 600;
    border: 1px solid transparent; cursor: pointer;
    border-radius: var(--radius-sm);
    font-family: inherit; text-decoration: none;
    transition: background .15s, box-shadow .15s, transform .15s;
    line-height: 1;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: #fff; box-shadow: 0 2px 6px rgba(37, 101, 199, .3);
}
.btn-primary:hover { color: #fff; box-shadow: 0 4px 12px rgba(37, 101, 199, .4); transform: translateY(-1px); }
.btn-success {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    color: #fff; box-shadow: 0 2px 6px rgba(77, 178, 89, .3);
}
.btn-success:hover { color: #fff; box-shadow: 0 4px 12px rgba(77, 178, 89, .4); transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--bg); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-ghost { background: none; color: var(--text-muted); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-google {
    background: var(--surface); color: var(--text);
    border: 1px solid var(--border-strong); width: 100%;
    padding: 12px 20px; font-size: 14px;
}
.btn-google:hover { background: var(--bg); box-shadow: var(--shadow-sm); }
.btn-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.btn[disabled] { opacity: .6; cursor: wait; }

/* ---------- Badges & indicators ---------- */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; font-size: 12px; font-weight: 600;
    border-radius: 20px;
}
.badge-green { background: var(--success-bg); color: var(--success-dark); }
.badge-orange { background: var(--warning-bg); color: var(--warning-dark); }
.badge-red { background: var(--danger-bg); color: var(--danger-dark); }
.badge-blue { background: var(--info-bg); color: var(--info); }

.perf-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; }
.perf-green { background: var(--success); box-shadow: 0 0 0 3px var(--success-bg); }
.perf-orange { background: var(--warning); box-shadow: 0 0 0 3px var(--warning-bg); }
.perf-red { background: var(--danger); box-shadow: 0 0 0 3px var(--danger-bg); }

.evo-up { color: var(--success-dark); font-weight: 600; }
.evo-down { color: var(--danger-dark); font-weight: 600; }

.flash {
    padding: 14px 18px; margin: 16px 24px 0; font-size: 14px;
    border-radius: var(--radius-sm); border-left: 4px solid;
    display: flex; align-items: center; gap: 10px;
}
.flash-success { background: var(--success-bg); color: var(--success-dark); border-color: var(--success); }
.flash-error { background: var(--danger-bg); color: var(--danger-dark); border-color: var(--danger); }
.flash-info { background: var(--info-bg); color: var(--brand-blue-dark); border-color: var(--brand-blue); }

/* ---------- Filtres ---------- */
.filters-bar { margin-bottom: 14px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.chip {
    padding: 6px 14px; font-size: 13px; font-weight: 500;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--text); border-radius: 20px; white-space: nowrap;
    transition: all .15s;
}
.chip:hover { text-decoration: none; background: var(--brand-blue-soft); color: var(--brand-blue-dark); border-color: var(--brand-blue); }
.chip-active { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; box-shadow: var(--shadow-sm); }
.chip-active:hover { background: var(--brand-blue-dark); color: #fff; }
.chip-config { background: transparent; border-style: dashed; padding: 6px 10px; }

/* ---------- Sélecteur de période ---------- */
.period-bar {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
    margin: 4px 0 18px;
}
.period-choices { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.period-custom { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.period-custom label { display: inline-flex; gap: 6px; align-items: center; font-size: 13px; color: var(--muted); }
.period-custom input[type="date"] {
    padding: 6px 10px; font-size: 13px; font-family: inherit;
    border: 1px solid var(--border-strong); background: var(--surface);
    border-radius: var(--radius-sm); color: var(--text);
}
.period-info { font-size: 12px; margin-left: auto; }

/* ---------- Sous-libellé compteur dans les KPI ---------- */
.stat-sub { font-size: 12px; margin-top: 4px; }

/* ---------- Chips configurables (settings) ---------- */
.chips-config .chips-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px 16px; margin-top: 8px;
}
.chips-config legend { font-weight: 600; margin-bottom: 4px; }

.filter-controls { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-controls select, .filter-controls input[type="search"] {
    padding: 9px 12px; font-size: 13px; font-family: inherit;
    border: 1px solid var(--border-strong); background: var(--surface);
    border-radius: var(--radius-sm); color: var(--text);
    transition: border-color .15s, box-shadow .15s;
}
.filter-controls select:focus, .filter-controls input[type="search"]:focus {
    outline: none; border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px var(--brand-blue-soft);
}

.export-bar {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; margin-bottom: 10px; padding: 0 4px;
    flex-wrap: wrap; gap: 8px;
}
.export-links a { font-weight: 600; }

/* ---------- Tableau ---------- */
.table-wrap {
    overflow-x: auto; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 1300px; }
.table th, .table td { padding: 12px 12px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.table th {
    background: #F8FAFD; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; font-size: 11px; letter-spacing: .3px;
    position: sticky; top: 0;
}
.table th a { color: var(--text-muted); }
.table th a:hover { color: var(--brand-blue); }
.table tbody tr { transition: background .1s; }
.table tbody tr:hover { background: var(--brand-blue-soft); }
.table tbody tr:last-child td { border-bottom: 0; }
.cell-title { max-width: 320px; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.cell-title a { color: var(--text); }
.cell-title a:hover { color: var(--brand-blue); }
.cell-url { max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
.empty-cell { text-align: center; padding: 48px 24px; color: var(--text-muted); }

.def-table td { padding: 8px 16px 8px 0; }
.def-table td:first-child { color: var(--text-muted); font-size: 13px; }

.pagination { display: flex; gap: 6px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.page-link {
    padding: 7px 13px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text); font-size: 13px;
    border-radius: var(--radius-sm); font-weight: 500;
    transition: all .15s;
}
.page-link:hover { text-decoration: none; background: var(--brand-blue-soft); border-color: var(--brand-blue); color: var(--brand-blue-dark); }
.page-active { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.page-active:hover { background: var(--brand-blue-dark); color: #fff; }

.range-links { display: flex; gap: 4px; }
.range-links a {
    padding: 6px 12px; font-size: 13px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text); border-radius: var(--radius-sm);
    font-weight: 500;
}
.range-links a:hover { text-decoration: none; background: var(--brand-blue-soft); }
.range-links .range-active { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.range-links .range-active:hover { background: var(--brand-blue-dark); color: #fff; }

/* ---------- Formulaires ---------- */
.form-grid { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.form-grid h3 { margin: 14px 0 4px; padding-top: 14px; border-top: 1px solid var(--border); }
.form-grid h3:first-child { border: 0; padding-top: 0; margin-top: 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 13px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
    padding: 10px 12px; font-size: 14px; font-family: inherit;
    border: 1px solid var(--border-strong); background: var(--surface);
    border-radius: var(--radius-sm); color: var(--text);
    transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px var(--brand-blue-soft);
}
.field input:disabled { background: var(--bg); color: var(--text-muted); }
.field-row { display: flex; gap: 14px; flex-wrap: wrap; }
.field-row .field { flex: 1; min-width: 180px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.check input { margin-top: 3px; }

/* ---------- Alertes ---------- */
.alerts-list { display: flex; flex-direction: column; gap: 10px; }
.alert-item {
    background: var(--surface); border: 1px solid var(--border);
    border-left: 4px solid var(--border); padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.alert-item.unread { background: #F5F9FE; }
.alert-item.sev-critical { border-left-color: var(--danger); }
.alert-item.sev-warning { border-left-color: var(--warning); }
.alert-item.sev-success { border-left-color: var(--success); }
.alert-item.sev-info { border-left-color: var(--brand-blue); }
.alert-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 4px; }

.site-list { list-style: none; }
.site-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.site-list li:last-child { border: 0; }

/* ---------- Auth (login) ---------- */
.auth-body {
    min-height: 100vh; background: var(--bg);
    display: flex; align-items: stretch;
    background-image: radial-gradient(circle at 10% 10%, var(--brand-blue-soft) 0%, transparent 40%),
                      radial-gradient(circle at 90% 90%, var(--brand-green-soft) 0%, transparent 40%);
}
.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%; max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    align-items: center;
}
.auth-hero {
    padding: 40px;
    display: flex; flex-direction: column; gap: 20px;
}
.auth-hero-logo {
    max-width: 220px;
    margin-bottom: 8px;
}
.auth-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    color: var(--text);
}
.auth-hero .highlight { color: var(--brand-blue); }
.auth-hero p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 460px;
    line-height: 1.6;
}
.auth-features {
    display: flex; flex-direction: column; gap: 14px;
    margin-top: 12px;
}
.auth-feature {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 14px;
}
.auth-feature-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--brand-green-soft); color: var(--brand-green-dark);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.auth-feature-icon svg { width: 18px; height: 18px; }
.auth-feature strong { display: block; margin-bottom: 2px; color: var(--text); }

.auth-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    width: 100%; max-width: 420px;
    justify-self: end;
    display: flex; flex-direction: column; gap: 18px;
}
.auth-card-title { text-align: center; }
.auth-card-title h2 { font-size: 22px; margin-bottom: 6px; }
.auth-card-title p { font-size: 13px; color: var(--text-muted); }
.auth-separator {
    display: flex; align-items: center; gap: 14px;
    color: var(--text-light); font-size: 12px; margin: 4px 0;
}
.auth-separator::before, .auth-separator::after {
    content: ""; flex: 1; height: 1px; background: var(--border);
}
.auth-card form { display: flex; flex-direction: column; gap: 14px; }

/* ---------- No-site onboarding ---------- */
.onboarding {
    max-width: 640px; margin: 40px auto;
    text-align: center; padding: 48px 32px;
    background: var(--surface); border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.onboarding img { max-width: 200px; margin: 0 auto 20px; display: block; }
.onboarding h2 { margin-bottom: 8px; }
.onboarding p { color: var(--text-muted); margin-bottom: 24px; }
.onboarding-steps {
    display: flex; justify-content: center; gap: 20px;
    margin: 28px 0; flex-wrap: wrap;
}
.onboarding-step {
    flex: 1; min-width: 140px; max-width: 180px;
    text-align: center;
}
.onboarding-step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand-blue-soft); color: var(--brand-blue);
    font-weight: 700; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
}
.onboarding-step h4 { font-size: 14px; margin-bottom: 4px; }
.onboarding-step p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .content { padding: 18px; }
    .auth-layout { grid-template-columns: 1fr; gap: 24px; padding: 24px 16px; }
    .auth-hero { padding: 20px; text-align: center; align-items: center; }
    .auth-card { justify-self: center; max-width: 460px; }
}

@media (max-width: 768px) {
    .burger { display: flex; align-items: center; }
    .sidebar {
        position: fixed; z-index: 100; height: 100vh;
        transform: translateX(-100%);
        box-shadow: var(--shadow-lg);
    }
    .sidebar.open { transform: translateX(0); }
    .sidebar-backdrop {
        display: none; position: fixed; inset: 0;
        background: rgba(20,33,61,.4); z-index: 99;
    }
    .sidebar-backdrop.open { display: block; }
    .page-head { flex-direction: column; align-items: stretch; }
    .page-head .btn { align-self: flex-start; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card { padding: 16px; }
    .stat-value { font-size: 22px; }
    .topbar { padding: 0 12px; gap: 8px; }
    .topbar-title { font-size: 14px; }
    .site-switcher { display: none; }
    .auth-hero h1 { font-size: 24px; }
    .auth-card { padding: 28px 22px; }
    .card { padding: 16px; }
    .content { padding: 12px; }
    .flash { margin: 12px 12px 0; }
}

@media (max-width: 480px) {
    .stat-cards { grid-template-columns: 1fr; }
    .filter-chips { gap: 4px; }
    .chip { padding: 5px 10px; font-size: 12px; }
}
