:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-muted: #f8f8fa;
  --border: #e5e5ea;
  --line: #ededf0;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --primary: #0071e3;
  --primary-strong: #005bbf;
  --danger: #d70015;
  --success: #067647;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
  opacity: 0.48;
}

.auth-hidden {
  display: none !important;
}

.admin-gate {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: var(--bg);
}

.admin-gate-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 380px);
  padding: 28px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gate-brand {
  margin-bottom: 4px;
}

.admin-gate-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.admin-gate-field input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.admin-gate-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.14);
}

.admin-gate-error {
  min-height: 18px;
  margin: -8px 0 0;
  color: var(--danger);
  font-size: 13px;
}

.app-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 26px 16px;
  color: var(--text);
  background: #fbfbfd;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #0071e3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand h1 {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.25;
}

.brand p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.nav-list {
  display: grid;
  gap: 4px;
}

.nav-item {
  width: 100%;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #424245;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  background: transparent;
}

.nav-item:hover,
.nav-item.active {
  color: var(--text);
  background: #ececf0;
}

.main {
  min-width: 0;
  padding: 34px 40px 44px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  margin-bottom: 24px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logout-button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.topbar h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
}

.environment-tag {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.page {
  display: none;
}

.page.active {
  display: grid;
  gap: 22px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric-card,
.panel {
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 22px;
}

.metric-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.metric-card strong {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.05;
}

.metric-card strong.small-metric {
  font-size: 22px;
  line-height: 1.25;
}

.metric-card strong.published {
  color: var(--success);
}

.panel {
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 650;
}

.panel-header span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.action-header {
  align-items: flex-start;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.project-detail-panel .header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.detail-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.04);
}

.detail-action-button.secondary-button {
  color: var(--text);
  background: #f5f7fb;
  border-color: #dfe5ee;
}

.detail-action-button.secondary-button:hover {
  background: #eef3fb;
}

.detail-action-button.danger-button {
  color: var(--danger);
  background: rgba(215, 0, 21, 0.08);
  border-color: rgba(215, 0, 21, 0.18);
}

.detail-action-button.primary-button {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.detail-action-button.success-button {
  color: #ffffff;
  background: var(--success);
  border-color: var(--success);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.toolbar input {
  width: min(540px, 100%);
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: var(--text);
  background: #f5f5f7;
  box-shadow: inset 0 0 0 1px #e8e8ed;
  outline: none;
}

.toolbar input:focus,
label input:focus,
label textarea:focus,
.tool-input:focus {
  box-shadow: inset 0 0 0 1.5px var(--primary), 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 14px 24px 18px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.table-pagination.hidden {
  display: none;
}

.pagination-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-actions button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 9px;
  white-space: nowrap;
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  background: #fbfbfd;
}

td {
  color: var(--text);
}

th.cell-center,
td.cell-center,
th.cell-number,
td.cell-number,
th.cell-actions,
td.cell-actions {
  text-align: center;
}

td.cell-center,
td.cell-number,
td.cell-actions {
  vertical-align: middle;
}

td.cell-actions .row-actions,
td.cell-actions {
  justify-content: center;
}

td.cell-actions .row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

td.cell-number {
  font-variant-numeric: tabular-nums;
}

tbody tr:hover {
  background: #f9f9fb;
}

tbody tr.row-flash {
  background: rgba(0, 113, 227, 0.08);
}

.empty-table {
  display: none;
  padding: 30px 24px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.empty-table.visible {
  display: block;
}

.inline-alert {
  display: none;
  margin: 16px 24px 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: #9f2d20;
  font-size: 13px;
  font-weight: 550;
  background: rgba(215, 0, 21, 0.08);
}

.inline-alert.visible {
  display: block;
}

.row-actions {
  display: flex;
  gap: 6px;
  white-space: nowrap;
}

.primary-button,
.secondary-button,
.ghost-button,
.text-button,
.danger-button {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 550;
}

.primary-button {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.primary-button:hover {
  background: var(--primary-strong);
}

.secondary-button {
  color: var(--text);
  background: #f5f5f7;
}

.selection-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.selection-summary strong {
  color: var(--text);
}

.selection-cell {
  width: 58px;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.feedback-toggle-button {
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
}

.feedback-toggle-resolve {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.feedback-toggle-resolve:hover {
  background: var(--primary-strong);
}

.feedback-toggle-restore {
  color: #a86200;
  background: rgba(246, 168, 0, 0.16);
}

.feedback-toggle-restore:hover {
  background: rgba(246, 168, 0, 0.24);
}

.ghost-button,
.text-button {
  color: var(--primary);
  background: transparent;
}

.text-button:hover,
.ghost-button:hover {
  background: rgba(0, 113, 227, 0.08);
}

.danger-button {
  color: var(--danger);
  background: rgba(215, 0, 21, 0.08);
}

.danger-button:hover {
  background: rgba(215, 0, 21, 0.13);
}

.success-button {
  color: #ffffff;
  background: var(--success);
}

.success-button:hover {
  background: #05643d;
}

.hidden {
  display: none;
}

.project-detail-panel {
  margin-top: 22px;
}

.project-detail-grid {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}

.full-detail {
  grid-column: 1 / -1;
}

.detail-section {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}

.detail-section h4 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 650;
}

.change-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.change-type-add {
  color: var(--success);
  background: rgba(6, 118, 71, 0.1);
}

.change-type-edit {
  color: var(--primary);
  background: rgba(0, 113, 227, 0.1);
}

.change-type-delete {
  color: var(--danger);
  background: rgba(215, 0, 21, 0.1);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.status-pending {
  color: #a86200;
  background: rgba(246, 168, 0, 0.14);
}

.status-resolved {
  color: var(--success);
  background: rgba(6, 118, 71, 0.1);
}

.status-muted-pill {
  color: #6b7280;
  background: #eef1f5;
}

.status-muted {
  color: var(--muted);
  background: rgba(110, 110, 115, 0.12);
}

.release-notes {
  width: 100%;
  min-height: 180px;
  margin: 0;
  padding: 22px 24px;
  overflow: auto;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-wrap;
  background: #fbfbfd;
}

.release-notes-input {
  display: block;
  resize: vertical;
  border: 0;
  outline: none;
  box-sizing: border-box;
}

.release-notes-input:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 113, 227, 0.18);
}

.release-detail-row td {
  padding: 0;
  background: #fbfbfd;
}

.tool-row-base td {
  background: #ffffff !important;
}

.tool-row-alt td {
  background: #f7f9fc !important;
}

tr.tool-group-1 td:first-child {
  border-left: 4px solid #059669;
}

tr.tool-group-2 td:first-child {
  border-left: 4px solid #d97706;
}

tr.tool-group-3 td:first-child {
  border-left: 4px solid #7c3aed;
}

tr.tool-group-4 td:first-child {
  border-left: 4px solid #0f766e;
}

tr.tool-group-5 td:first-child {
  border-left: 4px solid #9333ea;
}

.muted-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.compact-table {
  max-height: 320px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.change-detail-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfbfd;
}

.change-detail-card + .change-detail-card {
  margin-top: 12px;
}

.change-detail-card strong,
.change-detail-card span {
  display: block;
}

.change-detail-card strong {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
}

.change-detail-card span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.change-detail-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.75;
}

.release-detail {
  margin: 0;
  padding: 18px 22px;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 550;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  background: rgba(29, 29, 31, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.access-mode-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mode-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.mode-option span {
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.mode-option small {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.5;
}

.current-mode-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--text);
  font-size: 13px;
}

.current-mode-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #16a34a;
}

.openid-copy-button {
  padding: 0;
  color: var(--primary);
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.danger-text {
  color: #d93026;
}

.muted-action {
  color: #9ca3af;
  cursor: default;
}

@media (max-width: 900px) {
  .access-mode-group {
    grid-template-columns: 1fr;
  }
}

.empty-state {
  padding: 44px 24px;
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 650;
}

.empty-state p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feedback-list {
  display: grid;
}

.feedback-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.feedback-list article:last-child {
  border-bottom: 0;
}

.feedback-list span {
  color: var(--muted);
  font-size: 13px;
}

dialog {
  width: min(920px, calc(100vw - 32px));
  border: 0;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.26);
}

.dialog-header,
.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.dialog-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 650;
}

.dialog-actions {
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #fbfbfd;
}

.dialog-body {
  max-height: min(72vh, 760px);
  overflow: auto;
}

.form-section {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-child {
  border-bottom: 0;
}

.publish-option {
  padding: 18px 24px 0;
  border-top: 1px solid var(--line);
}

.delete-publish-option {
  margin-top: 16px;
}

.publish-option label,
.delete-publish-option label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.form-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.form-section-header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-grid div,
.detail-block {
  display: grid;
  gap: 7px;
}

.detail-grid span,
.detail-block span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.detail-grid strong {
  font-size: 15px;
  font-weight: 650;
}

.detail-block + .detail-block {
  margin-top: 18px;
}

.detail-block p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

label input,
label select,
label textarea,
.tool-input {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  color: var(--text);
  background: #f5f5f7;
  box-shadow: inset 0 0 0 1px #e8e8ed;
  outline: none;
}

label select {
  min-height: 39px;
  padding-right: 36px;
  background-image: linear-gradient(45deg, transparent 50%, #6e6e73 50%),
    linear-gradient(135deg, #6e6e73 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.tool-list-wrap {
  overflow-x: auto;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.tool-list-table {
  display: block;
  --tool-grid-columns: 1.4fr 1.4fr 90px 140px;
  min-width: 680px;
}

.tool-list-table thead,
.tool-list-table tbody {
  display: block;
}

.tool-list-table tr {
  display: grid;
  grid-template-columns: var(--tool-grid-columns);
  align-items: center;
}

.tool-list-table th,
.tool-list-table td {
  display: flex;
  align-items: center;
  padding: 12px;
  min-width: 0;
}

.tool-list-table th:nth-child(1),
.tool-list-table th:nth-child(2) {
  justify-content: center;
  text-align: center;
}

.tool-list-table td:nth-child(1),
.tool-list-table td:nth-child(2) {
  justify-content: flex-start;
}

.tool-list-table td:nth-child(1) .tool-input,
.tool-list-table td:nth-child(2) .tool-input {
  flex: 1;
}

.tool-list-table th:nth-child(3),
.tool-list-table td:nth-child(3) {
  justify-content: center;
  text-align: center;
}

.tool-list-table th:first-child,
.tool-list-table td:first-child {
  padding-left: 16px;
}

.tool-list-table th:last-child,
.tool-list-table td:last-child {
  justify-content: center;
  text-align: center;
  padding-right: 16px;
}

.tool-qty-input {
  width: 66px;
  max-width: 66px;
  text-align: center;
}

.tool-list-table .row-actions {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

.validation-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 13px;
}

.full-field {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    gap: 14px;
    padding: 14px;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-item {
    text-align: center;
  }

  .main {
    padding: 18px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar,
  .toolbar,
  .panel-header,
  .feedback-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar input,
  .toolbar .primary-button {
    width: 100%;
  }

  .toolbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .project-detail-panel .header-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .project-detail-panel .detail-action-button {
    flex: 1 1 calc(50% - 6px);
    min-width: 132px;
  }

  .nav-list,
  .metric-grid,
  .detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .environment-tag {
    width: 100%;
  }
}
