:root {
  --bg: #0d0d0d;
  --bg-raised: #161616;
  --bg-panel: #1e1e1e;
  --line: #333;
  --text: #f2f2f2;
  --muted: #9a9a9a;
  --accent: #f5a623;
  --accent-dim: #c47d10;
  --ok: #2f8f57;
  --danger: #a33d30;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; font-family: var(--font); background: var(--bg); color: var(--text); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 166, 35, 0.18), transparent),
    var(--bg);
}
.login-screen[hidden] {
  display: none !important;
}
.app[hidden] {
  display: none !important;
}
.login-card.is-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 1px rgba(163, 61, 48, 0.45);
}
.login-card .btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form-error {
  color: #fff;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  background: #8b2e22;
  border: 1px solid #c44;
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  line-height: 1.35;
}
.form-error[hidden] {
  display: none !important;
}
.toast {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: var(--bg-panel); border: 1px solid var(--line); color: var(--text);
  padding: 0.75rem 1.2rem; border-radius: 10px; font-weight: 600; font-size: 0.9rem;
  z-index: 100; max-width: min(92vw, 28rem); text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.toast.is-error {
  background: #8b2e22;
  border-color: #c44;
  color: #fff;
}
.toast[hidden] {
  display: none !important;
}
.remember-row {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--text) !important;
  font-weight: 500 !important;
  cursor: pointer;
}
.remember-row input {
  width: auto !important;
  margin: 0 !important;
}
.login-card {
  width: min(100%, 24rem);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.login-logo { width: 7rem; height: auto; margin: 0 auto; display: block; }
.login-card h1 {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.login-sub { margin: 0; text-align: center; color: var(--muted); font-size: 0.85rem; }
.login-card label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.login-card input, .modal-body input, .modal-body select, .modal-body textarea, .select, .add-user-form input, .add-user-form select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.lang-row { display: flex; justify-content: center; gap: 0.35rem; margin-top: 0.25rem; }

.app { max-width: 1280px; margin: 0 auto; padding: 1rem 1.25rem 2.5rem; }
.topbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line); margin-bottom: 1.25rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 3rem; height: 3rem; object-fit: contain; }
.brand-name {
  margin: 0; font-family: var(--display); font-size: 1.35rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; color: var(--accent);
}
.brand-sub { margin: 0.2rem 0 0; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.tabs {
  display: flex; gap: 0.25rem; background: var(--bg-raised); padding: 0.25rem;
  border-radius: 999px; border: 1px solid var(--line);
}
.tab {
  border: 0; background: transparent; color: var(--muted);
  padding: 0.45rem 1rem; border-radius: 999px; font-weight: 600; font-size: 0.88rem;
}
.tab.is-active { background: var(--bg-panel); color: var(--text); box-shadow: inset 0 0 0 1px var(--line); }
.topbar-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-left: auto; align-items: center; }
.user-chip { font-size: 0.8rem; color: var(--muted); }

.btn {
  border: 1px solid var(--line); background: var(--bg-panel); color: var(--text);
  padding: 0.5rem 0.85rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem;
}
.btn:hover { border-color: #555; }
.btn-primary { background: var(--accent); border-color: var(--accent-dim); color: #111; }
.btn-primary:hover { background: #ffb83a; }
.btn-ghost { background: transparent; }
.btn-danger { background: transparent; border-color: #6a2f28; color: #e8a090; }
.btn-sm { padding: 0.3rem 0.65rem; font-size: 0.8rem; }
.btn-icon { width: 2.25rem; height: 2.25rem; padding: 0; font-size: 1.35rem; }

.view[hidden] { display: none !important; }
.view-head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.view-head h1 {
  margin: 0; font-family: var(--display); font-size: 1.75rem; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.select { width: auto; min-width: 9rem; margin-top: 0; margin-left: auto; }

.month-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.month-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.25rem;
}
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}
.month-drag-hint {
  margin: -0.35rem 0 0.75rem;
}
.month-day {
  min-height: 7.5rem;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: crosshair;
}
.month-grid.is-dragging {
  user-select: none;
}
.month-day.is-selecting {
  background: rgba(245, 166, 35, 0.22);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.5);
}
.month-day.is-outside {
  opacity: 0.4;
}
.month-day.is-today {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.35);
}
.month-day.is-today.is-selecting {
  background: rgba(245, 166, 35, 0.28);
}
.month-day-num {
  padding: 0.35rem 0.45rem 0.15rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.month-day.is-today .month-day-num { color: var(--accent); }
.month-day-jobs {
  flex: 1;
  padding: 0 0.3rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: auto;
}
.job-chip {
  cursor: pointer;
  text-align: left; border: 0; border-left: 3px solid var(--accent); background: var(--bg-panel);
  padding: 0.3rem 0.4rem; border-radius: 0 4px 4px 0; font-size: 0.72rem; line-height: 1.25;
}
.job-chip .chip-title { font-weight: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-chip .chip-meta { color: var(--muted); font-size: 0.68rem; }
.chip-fill { margin-top: 0.2rem; height: 3px; background: #333; border-radius: 2px; overflow: hidden; }
.chip-fill > span { display: block; height: 100%; background: var(--ok); }
.chip-fill.is-short > span { background: var(--accent); }

.week-grid { display: none; }

.split { display: grid; grid-template-columns: minmax(220px, 300px) 1fr; gap: 1rem; min-height: 26rem; }
.list-panel, .detail-panel {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.detail-panel { padding: 1.15rem; }
.job-row {
  width: 100%; text-align: left; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; padding: 0.85rem 1rem; display: block;
}
.job-row:hover, .job-row.is-selected { background: var(--bg-panel); }
.jr-title { font-weight: 600; margin: 0 0 0.2rem; }
.jr-meta { margin: 0; font-size: 0.8rem; color: var(--muted); }
.empty-hint { color: var(--muted); text-align: center; margin: 2rem 1rem; }

.status-pill, .badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 0.15rem 0.45rem; border-radius: 3px; background: #333; color: var(--muted);
}
.badge.pending, .badge.invited { background: rgba(245,166,35,.2); color: #f5c86a; }
.badge.accepted { background: rgba(47,143,87,.25); color: #8fd4a8; }
.badge.declined { background: rgba(163,61,48,.25); color: #e8a090; }

.detail-head { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.detail-head h2 {
  margin: 0; flex: 1; font-family: var(--display); font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.meta-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem; margin: 1rem 0;
}
.meta-item {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.65rem 0.75rem;
}
.meta-item dt { margin: 0; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.meta-item dd { margin: 0.25rem 0 0; font-weight: 600; }
.section-label {
  font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 1rem 0 0.65rem;
}
.assign-list { display: flex; flex-direction: column; gap: 0.65rem; }
.assign-person {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}
.assign-person-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  margin: 0;
  border-bottom: none;
}
.assign-person.is-open .assign-person-head {
  border-bottom: 1px solid var(--line);
}
.assign-toggle {
  flex: 1;
  min-width: 12rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.15rem 0;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.assign-chevron {
  display: inline-block;
  width: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  height: 0.7rem;
  transform: rotate(-45deg);
  transition: transform 0.15s ease;
}
.assign-person.is-open .assign-chevron {
  transform: rotate(45deg);
  margin-top: 0.15rem;
}
.assign-toggle-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.assign-toggle-text strong {
  font-size: 0.95rem;
}
.assign-toggle .ar-role {
  font-size: 0.8rem;
  color: var(--muted);
}
.ar-summary {
  font-size: 0.78rem;
  color: var(--accent);
}
.assign-person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-left: auto;
}
.assign-person-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem 0.7rem;
}
.assign-person-body[hidden] {
  display: none !important;
}
.assign-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.65rem; background: var(--bg-raised, #111); border: 1px solid var(--line); border-radius: var(--radius);
}
.assign-row .status-select {
  width: auto;
  min-width: 7.5rem;
  margin: 0;
  padding: 0.3rem 0.45rem;
  font-size: 0.8rem;
}
.ar-name { font-weight: 600; min-width: 7rem; }
.ar-role { color: var(--muted); font-size: 0.85rem; }
.assign-row .ar-shift {
  font-size: 0.75rem;
  color: var(--accent);
  white-space: nowrap;
  flex: 1;
  min-width: 8rem;
}
.add-crew-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; align-items: center; }
.add-crew-bar select { flex: 1; min-width: 7rem; padding: 0.45rem 0.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.bulk-assign-box {
  margin-top: 0.5rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.bulk-person-label {
  display: block;
  margin: 0.5rem 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.bulk-person-label select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised, #111);
}
.bulk-shift-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}
.bulk-shift-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: 14rem;
  overflow: auto;
  margin-bottom: 0.75rem;
}
.bulk-shift-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text) !important;
  font-weight: 500 !important;
  cursor: pointer;
}
.bulk-shift-item input {
  width: auto !important;
  margin: 0 !important;
}
.bulk-shift-item.is-taken {
  opacity: 0.45;
}
.bulk-assign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.notes-block { white-space: pre-wrap; color: var(--muted); font-size: 0.9rem; }

.crew-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.75rem; }
.crew-card {
  text-align: left; border: 1px solid var(--line); background: var(--bg-raised);
  border-radius: var(--radius); padding: 1rem;
}
.crew-card.is-inactive { opacity: 0.55; }
.cc-name { font-family: var(--display); font-size: 1.25rem; margin: 0; text-transform: uppercase; }
.cc-role { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin: 0.2rem 0 0.55rem; }
.cc-contact { margin: 0; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

.settings-panel { display: flex; flex-direction: column; gap: 1.25rem; max-width: 36rem; }
.users-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.users-list li {
  padding: 0.65rem 0.75rem; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 0.4rem; background: var(--bg-raised); display: flex; justify-content: space-between;
}
.add-user-form {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.add-user-form h3 { margin: 0; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.03em; }

.modal {
  border: 1px solid var(--line); border-radius: 12px; padding: 0; background: var(--bg-raised);
  color: var(--text); max-width: 32rem; width: calc(100% - 2rem);
}
.modal.modal-wide { max-width: 48rem; max-height: calc(100vh - 2rem); }
.modal.modal-wide .modal-body { overflow-y: auto; max-height: calc(100vh - 3rem); }
.form-section {
  margin: 0;
  padding: 0.85rem 0 0.25rem;
  border: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-section legend {
  padding: 0 0.35rem 0 0;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}
.hint { margin: 0; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.files-list {
  list-style: none;
  margin: 0.35rem 0 0.65rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.files-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.files-list .file-name { flex: 1; min-width: 8rem; word-break: break-all; }
.files-list .file-meta { color: var(--muted); font-size: 0.75rem; }
.file-upload-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.file-upload-row input[type="file"] {
  flex: 1;
  min-width: 12rem;
  font-size: 0.8rem;
}
.day-needs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 22rem;
  overflow: auto;
  margin: 0.35rem 0 0.5rem;
}
.day-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.65rem;
  background: var(--bg);
}
.day-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.day-block-head strong { font-size: 0.88rem; flex: 1; min-width: 0; }
.day-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.day-block-actions .btn-sm {
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
}
.day-block-actions [data-remove-day] {
  color: #e8a090;
}
.day-block-actions [data-remove-day]:hover {
  border-color: var(--danger, #c44);
  color: #fff;
}
.shift-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.shift-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  align-items: flex-end;
  padding: 0.45rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised, var(--bg-panel));
}
.shift-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.shift-field > span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.shift-row input {
  margin: 0 !important;
  width: auto !important;
  min-width: 0;
}
.shift-row .shift-name {
  width: 7.5rem !important;
  min-width: 6rem;
}
.shift-row .shift-start,
.shift-row .shift-end {
  width: 9.5rem !important;
  min-width: 8.75rem;
  max-width: none;
}
.shift-row .shift-needed {
  width: 4.5rem !important;
  min-width: 4rem;
}
.shift-row .btn-icon {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0.45rem 0.35rem;
  align-self: flex-end;
  margin-bottom: 0.15rem;
}
.shift-row .btn-icon:hover { color: var(--danger, #c44); }
.day-need-row {
  display: grid;
  grid-template-columns: 1fr 6.5rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.day-need-row span { font-size: 0.85rem; }
.day-need-row input { margin: 0; }
.day-needs-summary {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.75rem 0 1rem;
}
.day-needs-summary .dns-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.4rem 0.65rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.day-needs-summary .dns-day {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}
.day-needs-summary .dns-shift {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.92;
  padding-left: 0.35rem;
}
.day-needs-summary .dns-row.is-short { border-color: var(--accent); }

@media (max-width: 640px) {
  .shift-row .shift-name,
  .shift-row .shift-start,
  .shift-row .shift-end {
    width: 100% !important;
    min-width: 0;
  }
  .shift-field {
    flex: 1 1 calc(50% - 0.55rem);
  }
  .shift-field.shift-field-name {
    flex: 1 1 100%;
  }
}
.calendar-url {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 0.75rem;
}
.modal::backdrop { background: rgba(0,0,0,.75); }
.modal-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.85rem; }
.modal-body h2 { margin: 0; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.03em; color: var(--accent); }
.modal-body label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.check-label { display: flex !important; align-items: center; gap: 0.5rem; color: var(--text) !important; }
.check-label input { width: auto !important; margin: 0 !important; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.spacer { flex: 1; }

.invite-dev {
  margin-top: 0.5rem; padding: 0.65rem; background: #111; border: 1px dashed var(--accent);
  border-radius: 6px; font-size: 0.75rem; word-break: break-all;
}

@media (max-width: 900px) {
  .month-grid {
    grid-template-columns: 1fr;
  }
  .month-weekdays { display: none; }
  .month-day {
    min-height: 0;
    flex-direction: row;
    align-items: stretch;
  }
  .month-day.is-outside { display: none; }
  .month-day-num { min-width: 2.5rem; }
  .month-day-jobs { flex-direction: row; flex-wrap: wrap; }
  .job-chip { flex: 1 1 10rem; }
  .split { grid-template-columns: 1fr; }
  .list-panel { max-height: 14rem; overflow: auto; }
  .row-2 { grid-template-columns: 1fr; }
  .topbar-actions { margin-left: 0; width: 100%; }
}
