:root {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f6f7f9;
  --text: #0f1720;
  --muted: #667085;
  --line: #e3e6ea;
  --accent: #0a9bd8;
  --accent-dark: #087daf;
  --blue: #2563eb;
  --red: #b42318;
  --amber: #b7791f;
  --green: #15803d;
  --chrome: #24282b;
  --nav: #23272a;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f6f7f9;
}

.login-panel {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.setup-panel {
  width: min(480px, 100%);
}

.login-panel h1 {
  margin: 0;
  font-size: 24px;
}

.login-panel p {
  margin: 0;
  color: var(--muted);
}

.login-logo {
  min-width: 0;
  padding: 0;
  color: var(--text);
}

.full-btn {
  width: 100%;
  min-height: 40px;
}

.login-help {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.password-rules {
  border: 1px solid #cfe8f5;
  border-radius: 6px;
  background: #eef8fd;
  color: #21516a;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.58);
}

.modal-panel {
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 6px;
  background: white;
  border: 1px solid var(--line);
  padding: 20px;
  position: relative;
  display: grid;
  gap: 14px;
}

.modal-panel h2,
.modal-panel h3,
.modal-panel p {
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: white;
  color: #475467;
  font-size: 20px;
}

.radio-list {
  display: grid;
  gap: 10px;
}

.radio-list label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.install-steps {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.link-btn {
  margin-left: 6px;
  background: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.app {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 51px 50px minmax(0, 1fr);
  min-height: 100vh;
}

.appbar {
  grid-column: 1;
  grid-row: 1;
  background: var(--chrome);
  color: white;
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: 4px;
}

.logo {
  padding-left: 8px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  white-space: nowrap;
}

.logo span {
  color: #159bd3;
  font-weight: 800;
}

/* Barre d'actions fixée en bas à gauche */
.statusbar {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  background: #24282b;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.top-icon,
.avatar-button,
.square-btn,
.icon-btn {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: white;
  color: #29313a;
}

.top-icon {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: #465261;
  color: white;
  position: relative;
}

.top-icon.active {
  background: #0c9fd9;
}

.top-icon svg,
.square-btn svg,
.icon-btn svg {
  width: 17px;
  height: 17px;
}

.has-badge::after {
  content: "1";
  position: absolute;
  top: -7px;
  right: -5px;
  min-width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #f59e0b;
  color: white;
  font-size: 10px;
  display: grid;
  place-items: center;
}

.avatar-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #c6ccd6;
  color: #475062;
  font-weight: 700;
  position: relative;
}

.sidebar {
  grid-column: 1;
  grid-row: 2;
  background: var(--nav);
  color: white;
  padding: 0 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.nav-footer {
  margin-left: auto;
}

.nav button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border-radius: 7px;
  background: transparent;
  color: #f7fafc;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-label {
  display: inline;
}

.nav svg,
.btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.nav button.active,
.nav button:hover {
  background: #0c9fd9;
  color: white;
}

.main {
  grid-column: 1;
  grid-row: 3;
  min-width: 0;
  padding: 16px 16px 80px;
  background: white;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 16px;
}

.topbar h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
}

.topbar p {
  max-width: 860px;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 5px;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.danger {
  color: var(--red);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.metric,
.wizard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.metric {
  padding: 16px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.panel {
  padding: 17px;
}

.panel h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

.status-dot.ok {
  background: var(--green);
}

.status-dot.bad {
  background: var(--red);
}

.team-toolbar {
  min-height: 57px;
  display: grid;
  grid-template-columns: 36px minmax(240px, 1fr) auto auto auto 36px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 -16px 16px;
  background: white;
}

.square-btn {
  width: 36px;
  height: 36px;
  border-radius: 5px;
}

.searchbar {
  min-width: 0;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid #edf0f3;
  border-radius: 5px;
  background: #f3f4f6;
  color: #6b7280;
}

.searchbar svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.searchbar input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.view-toggle {
  display: inline-flex;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}

.view-toggle button {
  width: 36px;
  background: white;
  color: #30343a;
  border-left: 1px solid var(--line);
}

.view-toggle button:first-child {
  border-left: 0;
}

.view-toggle button.active {
  background: #eef0f3;
}

.team-board {
  border-top: 1px solid transparent;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(184px, 1fr));
  gap: 16px;
  align-items: start;
}

.person-card {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  padding: 16px 12px;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
}

.card-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: transparent;
  color: #111827;
}

.card-menu svg {
  width: 18px;
  height: 18px;
}

.person-avatar {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #9ca3af;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  position: relative;
}

.presence-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: #9ca3af;
}

.person-avatar .presence-dot,
.avatar-button .presence-dot {
  position: absolute;
  right: 1px;
  bottom: 2px;
  border: 2px solid white;
  width: 13px;
  height: 13px;
}

.presence-dot.online,
.presence-dot.available {
  background: #20b718;
}

.presence-dot.meeting {
  background: #9ca3af;
}

.presence-dot.away {
  background: #f59e0b;
}

.presence-dot.dnd {
  background: #ef4444;
}

.person-card h3 {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}

.person-card p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #111827;
}

.person-status {
  margin-top: 4px;
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
}

.person-route {
  margin-top: 3px;
  min-height: 18px;
  color: #334155;
  font-size: 12px;
  text-align: center;
}

.card-actions {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 5px;
}

.empty-state {
  color: var(--muted);
  padding: 20px;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  background: #f8fafc;
  color: #334155;
  border-radius: 8px;
  padding: 14px;
  overflow: auto;
  max-height: 420px;
  font-size: 12px;
  line-height: 1.45;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.summary-card,
.helper-card,
.preview-card,
.health-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.summary-card {
  min-height: 92px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.summary-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.summary-card strong {
  display: block;
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.1;
}

.summary-card p,
.helper-card p,
.preview-card p,
.health-card p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.friendly-panel {
  min-height: 220px;
}

.friendly-list {
  display: grid;
  gap: 10px;
}

.friendly-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #edf0f3;
  border-radius: 8px;
  padding: 10px;
  background: #fbfcfd;
}

.friendly-row strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.friendly-row span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.friendly-row.audio-row {
  grid-template-columns: 42px minmax(180px, 1fr) minmax(220px, 320px);
}

.friendly-row.manage-audio-row {
  grid-template-columns: 42px minmax(180px, 1fr) minmax(220px, 320px) auto;
}

.friendly-row audio {
  width: 100%;
  max-width: 320px;
  height: 34px;
}

.extension-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 14px;
}

.extension-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.extension-card-head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.extension-card-head h3 {
  margin: 0;
  font-size: 16px;
}

.extension-card-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.quick-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f8fafc;
  color: #111827;
  font-size: 12px;
  font-weight: 650;
}

.quick-actions button.active {
  background: #e8f6fd;
  border-color: var(--accent);
  color: #075985;
}

.form-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.voicemail-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 14px;
}

.voicemail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.phone-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 14px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.voicemail-list {
  display: grid;
  gap: 10px;
}

.voicemail-message {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(220px, 320px) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #edf0f3;
  border-radius: 8px;
  background: #fbfcfd;
  padding: 10px;
}

.voicemail-message strong {
  display: block;
  font-size: 14px;
}

.voicemail-message span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.voicemail-message audio {
  width: 100%;
  height: 34px;
}

.round-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef6fb;
  color: #0b78a5;
}

.round-icon svg {
  width: 18px;
  height: 18px;
}

.round-icon.error {
  background: #fff1f2;
  color: var(--red);
}

.round-icon.warning {
  background: #fffbeb;
  color: var(--amber);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pill.ok {
  background: #ecfdf3;
  color: #166534;
}

.pill.warn {
  background: #fffbeb;
  color: #92400e;
}

.pill.bad {
  background: #fef2f2;
  color: #991b1b;
}

.helper-card {
  margin-top: 14px;
  padding: 17px;
}

.helper-card h3,
.preview-card h3 {
  margin: 0 0 6px;
}

.preview-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 28px;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}

.step-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.step-card strong {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  background: var(--accent);
  color: white;
}

.step-card span {
  color: #475467;
  line-height: 1.35;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.health-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.health-card h3 {
  margin: 0;
  font-size: 15px;
}

.upload-panel {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid #bfe4f7;
  border-radius: 10px;
  background: #f2f9fd;
}

.upload-panel h3 {
  margin: 0;
  font-size: 17px;
}

.upload-panel p {
  margin: 6px 0 0;
  color: #475467;
  line-height: 1.45;
}

.upload-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 280px) auto;
  gap: 10px;
  align-items: end;
}

.file-picker {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px dashed #8ecae6;
  border-radius: 8px;
  background: white;
  padding: 10px 12px;
  cursor: pointer;
  color: #0b78a5;
  font-weight: 700;
}

.file-picker svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.file-picker span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-picker input {
  display: none;
}

.compact-field {
  gap: 4px;
}

.compact-field input {
  min-height: 40px;
}

.wizard {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
}

.steps {
  background: var(--panel-soft);
  border-right: 1px solid var(--line);
  padding: 14px;
}

.step {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 600;
}

.step.active {
  background: white;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e2e8f0;
  font-size: 12px;
}

.wizard-body {
  padding: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 10px;
  background: white;
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 9px;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.table input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 8px;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.switch input {
  width: 18px;
  height: 18px;
}

.notice {
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid #bae6fd;
  background: #eff6ff;
  color: #1e3a8a;
  margin-bottom: 14px;
}

.notice.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #eef2f7;
  color: var(--text);
}

.badge.available {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.badge.meeting {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.badge.away {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.badge.dnd {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.segmented {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
}

.segmented button {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  border-radius: 6px;
}

.segmented button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

@media (max-width: 980px) {
  .app {
    grid-template-columns: 1fr;
    grid-template-rows: 51px auto minmax(0, 1fr);
    overflow-x: hidden;
  }

  .appbar {
    grid-column: 1;
  }

  .logo {
    width: auto;
  }

  .sidebar {
    grid-column: 1;
    grid-row: 2;
    position: static;
    max-width: 100vw;
    overflow-x: auto;
  }

  .nav {
    display: flex;
  }

  .nav button {
    min-width: 74px;
  }

  .nav-footer {
    display: none;
  }

  .main {
    grid-column: 1;
    grid-row: 3;
  }

  .grid.cols-4,
  .grid.cols-2,
  .summary-strip,
  .step-cards,
  .health-grid,
  .upload-panel,
  .upload-controls,
  .form-grid,
  .form-grid.compact,
  .extension-board,
  .voicemail-board,
  .phone-board,
  .split,
  .wizard {
    grid-template-columns: 1fr;
  }

  .extension-card-head {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .extension-card-head .pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    display: grid;
  }

  .friendly-row,
  .friendly-row.audio-row,
  .friendly-row.manage-audio-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .friendly-row audio,
  .friendly-row.manage-audio-row .btn {
    grid-column: 1 / -1;
    max-width: none;
  }

  .voicemail-message {
    grid-template-columns: 1fr;
  }

  .team-toolbar {
    grid-template-columns: 36px minmax(180px, 1fr) 36px;
  }

  .team-toolbar .btn,
  .team-toolbar .view-toggle {
    display: none;
  }
}
