/* =========================================================================
   CSForm Tasks — Design system
   Sobre, professionnel, institutionnel. Variables CSS pour clair/sombre.
   ========================================================================= */

:root {
    --brand: #1e4fd6;
    --brand-dark: #163ea8;
    --brand-light: #eef2ff;

    --bg: #f4f6fb;
    --bg-elevated: #ffffff;
    --bg-subtle: #f1f4f9;
    --border: #e2e6ef;
    --border-strong: #cbd3e1;

    --text: #1a2233;
    --text-muted: #5b6472;
    --text-faint: #8993a4;

    --success: #16a34a;
    --success-bg: #e9f9ef;
    --warning: #d97706;
    --warning-bg: #fef3e2;
    --danger: #dc2626;
    --danger-bg: #fdecec;
    --info: #7c3aed;
    --info-bg: #f3ecfd;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(20, 30, 60, 0.06);
    --shadow: 0 4px 16px rgba(20, 30, 60, 0.08);
    --shadow-lg: 0 12px 32px rgba(20, 30, 60, 0.14);

    --sidebar-w: 258px;
    --topbar-h: 64px;

    color-scheme: light;
}

[data-theme="dark"] {
    --bg: #10141d;
    --bg-elevated: #171d29;
    --bg-subtle: #1c2330;
    --border: #2a3242;
    --border-strong: #384155;

    --text: #eef1f7;
    --text-muted: #9aa4b8;
    --text-faint: #6b7385;

    --brand-light: #1b2748;
    --success-bg: #123123;
    --warning-bg: #2e2210;
    --danger-bg: #34181a;
    --info-bg: #241a3d;

    color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 4px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 8px; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
img { max-width: 100%; }

/* ---------- Layout global ---------- */
.app-shell { display: flex; min-height: 100vh; }

.sidebar {
    width: var(--sidebar-w);
    flex-shrink: 0;
    background: var(--bg-elevated);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; bottom: 0; left: 0;
    z-index: 40;
    transition: transform .2s ease;
}
.sidebar-brand {
    display: flex; align-items: center; gap: 10px;
    padding: 20px 22px 16px;
}
.sidebar-brand .logo-mark {
    width: 34px; height: 34px; border-radius: 9px;
    background: linear-gradient(135deg, var(--brand), #4f7cff);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px; letter-spacing: -0.5px;
}
.sidebar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.sidebar-brand .brand-text strong { font-size: 15px; }
.sidebar-brand .brand-text span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

.sidebar-nav { flex: 1; overflow-y: auto; padding: 6px 12px; }
.nav-section-label {
    font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em;
    color: var(--text-faint); padding: 14px 10px 6px;
}
.nav-link {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 11px; border-radius: var(--radius-sm);
    color: var(--text-muted); font-weight: 550; font-size: 13.8px;
    margin-bottom: 2px;
}
.nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-link:hover { background: var(--bg-subtle); color: var(--text); }
.nav-link.active { background: var(--brand-light); color: var(--brand); }
[data-theme="dark"] .nav-link.active { color: #a9c0ff; }
.nav-link .nav-badge {
    margin-left: auto; background: var(--danger); color: #fff;
    font-size: 10.5px; font-weight: 700; border-radius: 20px;
    padding: 1px 7px; min-width: 18px; text-align: center;
}

.sidebar-footer { padding: 14px; border-top: 1px solid var(--border); }
.user-chip { display: flex; align-items: center; gap: 10px; padding: 6px; border-radius: var(--radius-sm); }
.user-chip:hover { background: var(--bg-subtle); }
.user-chip .meta { overflow: hidden; }
.user-chip .meta strong { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-chip .meta span { font-size: 11.5px; color: var(--text-muted); }

.avatar {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 12.5px; flex-shrink: 0;
}
.avatar.sm { width: 26px; height: 26px; font-size: 10.5px; }
.avatar.lg { width: 52px; height: 52px; font-size: 18px; }

.main-col { margin-left: var(--sidebar-w); flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
    height: var(--topbar-h); flex-shrink: 0;
    background: var(--bg-elevated); border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 14px; padding: 0 22px;
    position: sticky; top: 0; z-index: 30;
}
.topbar .menu-toggle { display: none; }
.topbar-search {
    flex: 1; max-width: 420px; position: relative;
}
.topbar-search input {
    width: 100%; padding: 9px 12px 9px 36px; border-radius: 999px;
    border: 1px solid var(--border); background: var(--bg-subtle);
    color: var(--text); font-size: 13.5px;
}
.topbar-search input:focus { outline: none; border-color: var(--brand); background: var(--bg-elevated); }
.topbar-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-faint); }

.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.icon-btn {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid transparent;
    background: transparent; display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); cursor: pointer; position: relative;
}
.icon-btn:hover { background: var(--bg-subtle); color: var(--text); }
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn .dot {
    position: absolute; top: 6px; right: 7px; width: 8px; height: 8px;
    background: var(--danger); border-radius: 50%; border: 2px solid var(--bg-elevated);
}

.page { padding: 26px 30px 60px; max-width: 1440px; width: 100%; margin: 0 auto; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head h1 { font-size: 22px; }
.page-head .subtitle { color: var(--text-muted); font-size: 13.5px; }
.breadcrumb { font-size: 12.5px; color: var(--text-faint); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 9px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
    background: var(--bg-elevated); color: var(--text); font-weight: 600; font-size: 13.5px;
    cursor: pointer; transition: background .15s, border-color .15s, transform .05s;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { background: var(--bg-subtle); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-danger { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn-danger:hover { filter: brightness(0.92); }
.btn-ghost { border-color: transparent; background: transparent; }
.btn-ghost:hover { background: var(--bg-subtle); }
.btn-sm { padding: 6px 11px; font-size: 12.5px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Cartes / stats ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 22px; }
.stat-card {
    background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.stat-card .stat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.stat-card .stat-icon {
    width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.stat-card .stat-icon svg { width: 17px; height: 17px; }
.stat-card .stat-value { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.stat-card .stat-label { color: var(--text-muted); font-size: 12.8px; margin-top: 2px; }
.stat-card .stat-trend { font-size: 11.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }

.card {
    background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-header h3 { font-size: 15px; }
.card-body { padding: 18px 20px; }
.card-body.tight { padding: 0; }

.grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------- Badges & progression ---------- */
.badge {
    display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px;
    border-radius: 20px; font-size: 11.5px; font-weight: 700;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-priority-low { color: #64748b; background: #f1f5f9; }
.badge-priority-normal { color: #1e4fd6; background: #eef2ff; }
.badge-priority-high { color: #b45309; background: #fef3e2; }
.badge-priority-urgent { color: #b91c1c; background: #fdecec; }
.badge-status-todo { color: #475569; background: #f1f5f9; }
.badge-status-in_progress { color: #1e4fd6; background: #eef2ff; }
.badge-status-waiting { color: #7c3aed; background: #f3ecfd; }
.badge-status-blocked { color: #b91c1c; background: #fdecec; }
.badge-status-done { color: #15803d; background: #e9f9ef; }
.badge-status-cancelled { color: #475569; background: #f1f5f9; }
.badge-overdue { color: #b91c1c; background: #fdecec; }
.badge-soon { color: #b45309; background: #fef3e2; }
[data-theme="dark"] .badge-priority-low, [data-theme="dark"] .badge-status-todo, [data-theme="dark"] .badge-status-cancelled { background: #232a38; color: #b6c0d1; }
[data-theme="dark"] .badge-priority-normal, [data-theme="dark"] .badge-status-in_progress { background: #1b2748; color: #9db4ff; }
[data-theme="dark"] .badge-priority-high, [data-theme="dark"] .badge-soon { background: #332508; color: #f3c261; }
[data-theme="dark"] .badge-priority-urgent, [data-theme="dark"] .badge-status-blocked, [data-theme="dark"] .badge-overdue { background: #351417; color: #f3878a; }
[data-theme="dark"] .badge-status-waiting { background: #241a3d; color: #c4a6f7; }
[data-theme="dark"] .badge-status-done { background: #0e2a1a; color: #7fdc9f; }

.progress-track { width: 100%; height: 8px; border-radius: 20px; background: var(--bg-subtle); overflow: hidden; }
.progress-track.lg { height: 14px; }
.progress-bar { height: 100%; border-radius: 20px; background: var(--brand); transition: width .3s ease; }
.progress-bar.complete { background: var(--success); }
.progress-row { display: flex; align-items: center; gap: 8px; min-width: 120px; }
.progress-row .progress-track { flex: 1; }
.progress-row .progress-pct { font-size: 12px; font-weight: 700; color: var(--text-muted); width: 34px; text-align: right; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; min-width: 760px; }
table.data-table th {
    text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em;
    color: var(--text-faint); font-weight: 700; padding: 10px 16px; border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
table.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 13.5px; }
table.data-table tbody tr:hover { background: var(--bg-subtle); }
table.data-table tr.is-overdue td:first-child { box-shadow: inset 3px 0 0 var(--danger); }
.task-title-cell { display: flex; flex-direction: column; gap: 2px; max-width: 320px; }
.task-title-cell a { font-weight: 650; }
.task-title-cell a:hover { color: var(--brand); }
.task-title-cell .task-sub { font-size: 12px; color: var(--text-faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.person-cell { display: flex; align-items: center; gap: 8px; }
.actions-cell { display: flex; gap: 4px; justify-content: flex-end; }

/* ---------- Filtres ---------- */
.filters-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 16px; }
.filters-bar select, .filters-bar input[type="text"], .filters-bar input[type="date"] {
    padding: 8px 10px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
    background: var(--bg-elevated); color: var(--text); font-size: 13px;
}
.filters-bar .spacer { flex: 1; }

/* ---------- Formulaires ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 12.8px; font-weight: 650; color: var(--text-muted); }
label .req { color: var(--danger); }
input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="number"],
input[type="file"], select, textarea {
    padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
    background: var(--bg-elevated); color: var(--text); font-size: 13.8px; font-family: inherit; width: 100%;
}
textarea { resize: vertical; min-height: 90px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.field-error { color: var(--danger); font-size: 12px; }
.field-hint { color: var(--text-faint); font-size: 12px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; }
.checkbox-row input { width: auto; }
.chip-select { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-select label {
    display: flex; align-items: center; gap: 6px; border: 1px solid var(--border-strong);
    padding: 6px 11px; border-radius: 20px; font-weight: 500; font-size: 12.8px; cursor: pointer; color: var(--text);
}
.chip-select input { width: auto; }
.chip-select input:checked + span, .chip-select label:has(input:checked) { color: var(--brand); }
.chip-select label:has(input:checked) { border-color: var(--brand); background: var(--brand-light); }

/* ---------- Alerts / flash ---------- */
.flash-stack { position: fixed; top: 18px; right: 18px; z-index: 100; display: flex; flex-direction: column; gap: 8px; max-width: 360px; }
.flash {
    padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow-lg); font-size: 13.5px; font-weight: 550;
    display: flex; align-items: center; gap: 10px; border: 1px solid transparent; animation: slidein .18s ease;
}
.flash-success { background: var(--success-bg); color: var(--success); border-color: currentColor; }
.flash-error { background: var(--danger-bg); color: var(--danger); border-color: currentColor; }
.flash-info { background: var(--info-bg); color: var(--info); border-color: currentColor; }
@keyframes slidein { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.alert-warning { background: var(--warning-bg); color: #92400e; }
.alert-danger { background: var(--danger-bg); color: #991b1b; }
.alert-info { background: var(--info-bg); color: #5b21b6; }
[data-theme="dark"] .alert-warning { color: #f3c261; }
[data-theme="dark"] .alert-danger { color: #f3878a; }
[data-theme="dark"] .alert-info { color: #c4a6f7; }

/* ---------- Empty states ---------- */
.empty-state { text-align: center; padding: 46px 20px; color: var(--text-muted); }
.empty-state .emoji { font-size: 34px; margin-bottom: 10px; }
.empty-state h4 { color: var(--text); margin-bottom: 4px; }

/* ---------- Modales ---------- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(15, 20, 30, 0.5); z-index: 200;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
    background: var(--bg-elevated); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
}
.modal-header { padding: 18px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-body { padding: 20px; }
.modal-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 8px; }

/* ---------- Activité / commentaires ---------- */
.activity-list { display: flex; flex-direction: column; gap: 0; }
.activity-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); margin-top: 7px; flex-shrink: 0; }
.activity-text { font-size: 13.3px; }
.activity-time { font-size: 11.5px; color: var(--text-faint); margin-top: 2px; }

.comment { display: flex; gap: 11px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.comment:last-child { border-bottom: none; }
.comment-body { flex: 1; }
.comment-head { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.comment-head strong { font-size: 13.3px; }
.comment-head time { font-size: 11.5px; color: var(--text-faint); }
.comment-text { font-size: 13.5px; white-space: pre-wrap; }
.comment-actions { display: flex; gap: 10px; margin-top: 4px; }
.comment-actions button { background: none; border: none; padding: 0; font-size: 11.8px; color: var(--text-faint); cursor: pointer; font-weight: 600; }
.comment-actions button:hover { color: var(--brand); }

/* ---------- Login ---------- */
.auth-shell {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at top left, #2a4dd0 0%, #16223f 65%);
    padding: 20px;
}
.auth-card {
    width: 100%; max-width: 380px; background: var(--bg-elevated); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 34px 32px;
}
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.auth-card h1 { font-size: 19px; }
.auth-card .subtitle { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
.auth-demo { margin-top: 18px; padding: 12px 14px; background: var(--bg-subtle); border-radius: var(--radius-sm); font-size: 12px; color: var(--text-muted); }

/* ---------- Team page ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.team-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.team-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.team-card-head strong { font-size: 14.5px; display: block; }
.team-card-head span { font-size: 12px; color: var(--text-muted); }
.team-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 12px; text-align: center; }
.team-stats-row .num { font-weight: 800; font-size: 16px; }
.team-stats-row .lbl { font-size: 10.5px; color: var(--text-faint); text-transform: uppercase; }

/* ---------- Calendar ---------- */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.calendar-dow { background: var(--bg-subtle); text-align: center; padding: 8px; font-size: 11px; font-weight: 700; color: var(--text-faint); text-transform: uppercase; }
.calendar-cell { background: var(--bg-elevated); min-height: 108px; padding: 6px; }
.calendar-cell.other-month { background: var(--bg-subtle); opacity: .5; }
.calendar-cell .day-num { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; }
.calendar-cell.is-today .day-num { color: #fff; background: var(--brand); width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.calendar-task {
    font-size: 10.8px; padding: 2px 6px; border-radius: 4px; margin-bottom: 3px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis; display: block; font-weight: 600;
}

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 18px; }
.pagination a, .pagination span {
    min-width: 32px; height: 32px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    font-size: 12.8px; font-weight: 600; border: 1px solid var(--border); color: var(--text-muted);
}
.pagination a:hover { background: var(--bg-subtle); }
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- Divers ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-muted { color: var(--text-muted); }
.text-faint { color: var(--text-faint); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.flex { display: flex; } .items-center { align-items: center; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; }
.justify-between { justify-content: space-between; }
hr.sep { border: none; border-top: 1px solid var(--border); margin: 18px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .sidebar { transform: translateX(-100%); box-shadow: var(--shadow-lg); }
    .sidebar.open { transform: translateX(0); }
    .main-col { margin-left: 0; }
    .topbar .menu-toggle { display: flex; }
    .topbar-search { display: none; }
    .grid-3 { grid-template-columns: 1fr; }
    .page { padding: 18px 16px 40px; }
    .sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 39; }
    .sidebar-backdrop.open { display: block; }
}
@media (max-width: 620px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .team-stats-row { grid-template-columns: repeat(2, 1fr); }
    .page-head { flex-direction: column; align-items: flex-start; }
    table.data-table { min-width: 620px; }
}
