* {
  box-sizing: border-box;
}

html {
  background: #030708;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #f7fafc;
  background:
    radial-gradient(circle at 12% 0%, rgba(198, 255, 0, 0.12), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(53, 185, 255, 0.08), transparent 30%),
    #030708;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: #c6ff00;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.site-nav {
  width: min(1280px, calc(100% - 24px));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(3, 7, 8, 0.84);
  backdrop-filter: blur(12px);
}

.site-brand,
.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-brand {
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 255, 0, 0.42);
  border-radius: 8px;
  color: #c6ff00;
  background: rgba(198, 255, 0, 0.07);
}

.site-nav-actions form {
  margin: 0;
}

.flash {
  width: min(1280px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.flash-success {
  color: #c6ff00;
  border: 1px solid rgba(198, 255, 0, 0.36);
  background: rgba(198, 255, 0, 0.08);
}

.flash-warning,
.form-error {
  color: #ffbc24;
  border: 1px solid rgba(255, 188, 36, 0.42);
  background: rgba(255, 188, 36, 0.12);
}

.form-error {
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.page-shell {
  width: min(1328px, 100%);
  margin: 0 auto;
  padding: 20px 14px 36px;
}

.auth-shell {
  width: min(560px, calc(100% - 24px));
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 28px 0;
}

.auth-card {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(9, 19, 23, 0.92), rgba(14, 29, 34, 0.78));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.auth-card h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 7vw, 54px);
  line-height: 0.98;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-alt {
  margin: 0;
  color: rgba(247, 250, 252, 0.68);
  font-size: 13px;
}

.pcwrg-app,
.pcwrg-app * {
  box-sizing: border-box;
}

.pcwrg-app {
  --pcwrg-black: #030708;
  --pcwrg-charcoal: #071114;
  --pcwrg-panel: rgba(9, 19, 23, 0.88);
  --pcwrg-panel-soft: rgba(14, 29, 34, 0.78);
  --pcwrg-panel-line: rgba(255, 255, 255, 0.13);
  --pcwrg-panel-line-strong: rgba(198, 255, 0, 0.42);
  --pcwrg-white: #f7fafc;
  --pcwrg-muted: rgba(247, 250, 252, 0.68);
  --pcwrg-soft: rgba(247, 250, 252, 0.48);
  --pcwrg-lime: #c6ff00;
  --pcwrg-lime-dark: #9cdc00;
  --pcwrg-red: #ff453d;
  --pcwrg-yellow: #ffbc24;
  --pcwrg-green: #78db3c;
  --pcwrg-blue: #35b9ff;
  --pcwrg-purple: #ad75ff;
  --pcwrg-radius: 8px;
  --pcwrg-radius-sm: 6px;
  --pcwrg-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  width: 100%;
  color: var(--pcwrg-white);
  font-family: Arial, Helvetica, sans-serif;
}

.pcwrg-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(14px, 2.2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at 15% 5%, rgba(198, 255, 0, 0.12), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(53, 185, 255, 0.08), transparent 30%),
    linear-gradient(145deg, rgba(2, 7, 8, 0.98), rgba(8, 19, 23, 0.96) 48%, rgba(2, 7, 8, 0.98));
  overflow: hidden;
}

.pcwrg-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.pcwrg-brand {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.pcwrg-brand-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--pcwrg-lime, #c6ff00);
  border: 1px solid rgba(198, 255, 0, 0.42);
  border-radius: 8px;
  background: rgba(198, 255, 0, 0.07);
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(198, 255, 0, 0.16);
}

.pcwrg-eyebrow,
.pcwrg-kpi-label {
  margin-bottom: 3px;
  color: #f7fafc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pcwrg-title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4.6vw, 50px);
  line-height: 0.98;
  font-weight: 950;
}

.pcwrg-title span {
  display: block;
  color: #c6ff00;
  font-size: clamp(22px, 3.2vw, 34px);
}

.pcwrg-subtitle,
.pcwrg-small {
  color: rgba(247, 250, 252, 0.68);
  line-height: 1.45;
}

.pcwrg-subtitle {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: clamp(13px, 1.35vw, 15px);
}

.pcwrg-small {
  font-size: 12px;
}

.pcwrg-demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(198, 255, 0, 0.36);
  border-radius: 999px;
  color: #c6ff00;
  background: rgba(198, 255, 0, 0.07);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.pcwrg-controls,
.report-actions,
.export-links {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  flex-wrap: wrap;
}

.pcwrg-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #f7fafc;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.pcwrg-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(198, 255, 0, 0.54);
  background: rgba(198, 255, 0, 0.08);
}

.pcwrg-btn-primary {
  color: #061006;
  border-color: rgba(198, 255, 0, 0.9);
  background: linear-gradient(135deg, #c6ff00, #9cdc00);
  box-shadow: 0 0 28px rgba(198, 255, 0, 0.28);
}

.pcwrg-btn-outline {
  border-color: rgba(198, 255, 0, 0.5);
}

.pcwrg-btn-sm {
  min-height: 32px;
  padding: 7px 9px;
  font-size: 12px;
}

.danger-btn {
  color: #ff453d;
  border-color: rgba(255, 69, 61, 0.38);
}

.pcwrg-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(3, 7, 8, 0.86);
  backdrop-filter: blur(12px);
}

.pcwrg-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(9, 18, 23, 0.86);
}

.pcwrg-tab {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  color: #f7fafc;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.pcwrg-tab-number {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.pcwrg-tab.pcwrg-active {
  color: #061006;
  background: linear-gradient(135deg, #c6ff00, #9cdc00);
}

.pcwrg-tab-panel {
  display: none;
}

.pcwrg-tab-panel.pcwrg-active {
  display: block;
}

.pcwrg-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

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

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

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

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

.pcwrg-card {
  min-width: 0;
  overflow: hidden;
  padding: clamp(15px, 1.55vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
    linear-gradient(145deg, rgba(9, 19, 23, 0.88), rgba(14, 29, 34, 0.78));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.title-card {
  margin-bottom: 16px;
}

.pcwrg-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: #fff;
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
}

.pcwrg-card-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 255, 0, 0.42);
  border-radius: 50%;
  color: #c6ff00;
  background: rgba(198, 255, 0, 0.07);
  font-size: 13px;
  font-weight: 950;
  flex: 0 0 auto;
}

.pcwrg-field {
  min-width: 0;
}

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

.pcwrg-label {
  display: block;
  margin: 0 0 7px;
  color: rgba(247, 250, 252, 0.68);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.pcwrg-required {
  color: #ff453d;
}

.pcwrg-input,
.pcwrg-select,
.pcwrg-textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  outline: none;
  color: #f7fafc;
  background: rgba(1, 7, 9, 0.82);
  font-size: 13px;
  line-height: 1.3;
}

.pcwrg-textarea {
  min-height: 86px;
  resize: vertical;
}

.pcwrg-input:focus,
.pcwrg-select:focus,
.pcwrg-textarea:focus {
  border-color: #c6ff00;
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.12);
}

.pcwrg-range-wrap {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.pcwrg-range-value {
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.pcwrg-range {
  width: 100%;
  accent-color: #c6ff00;
}

.pcwrg-warning {
  display: none;
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 188, 36, 0.48);
  border-radius: 8px;
  color: #ffbc24;
  background: rgba(255, 188, 36, 0.13);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.pcwrg-warning.pcwrg-show {
  display: block;
}

.pcwrg-snapshot,
.pcwrg-completion {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pcwrg-snapshot-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pcwrg-snapshot-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.pcwrg-snapshot-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #c6ff00;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 950;
}

.pcwrg-snapshot-label {
  color: rgba(247, 250, 252, 0.68);
  font-size: 11px;
  line-height: 1.25;
}

.pcwrg-snapshot-value {
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.pcwrg-progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.pcwrg-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c6ff00, #9cdc00);
}

.pcwrg-progress-fill.pcwrg-warn {
  background: linear-gradient(90deg, #ffbc24, #c6ff00);
}

.pcwrg-progress-fill.pcwrg-danger {
  background: linear-gradient(90deg, #ff453d, #ffbc24);
}

.pcwrg-kpi-value {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 950;
  line-height: 1.03;
  overflow-wrap: anywhere;
}

.pcwrg-kpi-note {
  margin-top: 5px;
  color: #c6ff00;
  font-size: 12px;
  font-weight: 800;
}

.pcwrg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.pcwrg-badge-green {
  color: #78db3c;
  border-color: rgba(120, 219, 60, 0.42);
  background: rgba(120, 219, 60, 0.13);
}

.pcwrg-badge-yellow {
  color: #ffbc24;
  border-color: rgba(255, 188, 36, 0.42);
  background: rgba(255, 188, 36, 0.13);
}

.pcwrg-badge-red {
  color: #ff453d;
  border-color: rgba(255, 69, 61, 0.42);
  background: rgba(255, 69, 61, 0.13);
}

.pcwrg-badge-blue {
  color: #35b9ff;
  border-color: rgba(53, 185, 255, 0.42);
  background: rgba(53, 185, 255, 0.13);
}

.pcwrg-empty,
.pcwrg-notice {
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(247, 250, 252, 0.68);
  background: rgba(255, 255, 255, 0.035);
  font-size: 15px;
  line-height: 1.5;
}

.pcwrg-notice {
  padding: 14px;
  border-style: solid;
  border-color: rgba(198, 255, 0, 0.26);
  background: rgba(198, 255, 0, 0.055);
  font-size: 12px;
}

.pcwrg-gauge {
  --pcwrg-score: 0;
  width: min(230px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(7, 15, 18, 1) 0 54%, transparent 55%),
    conic-gradient(#c6ff00 calc(var(--pcwrg-score) * 1%), rgba(255, 255, 255, 0.14) 0);
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.58), 0 0 30px rgba(198, 255, 0, 0.14);
}

.pcwrg-gauge-yellow {
  background:
    radial-gradient(circle at center, rgba(7, 15, 18, 1) 0 54%, transparent 55%),
    conic-gradient(#ffbc24 calc(var(--pcwrg-score) * 1%), rgba(255, 255, 255, 0.14) 0);
}

.pcwrg-gauge-red {
  background:
    radial-gradient(circle at center, rgba(7, 15, 18, 1) 0 54%, transparent 55%),
    conic-gradient(#ff453d calc(var(--pcwrg-score) * 1%), rgba(255, 255, 255, 0.14) 0);
}

.pcwrg-gauge-inner {
  text-align: center;
}

.pcwrg-gauge-number {
  color: #fff;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 950;
  line-height: 0.92;
}

.pcwrg-gauge-sub {
  color: rgba(247, 250, 252, 0.68);
  font-size: 16px;
  font-weight: 800;
}

.pcwrg-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.pcwrg-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.pcwrg-table th,
.pcwrg-table td {
  padding: 12px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 250, 252, 0.88);
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.pcwrg-table th {
  color: rgba(247, 250, 252, 0.68);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.pcwrg-list,
.pcwrg-issue-list,
.pcwrg-risk-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pcwrg-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  color: #fff;
  font-size: 13px;
  line-height: 1.38;
}

.pcwrg-check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #c6ff00;
  border-radius: 50%;
  color: #c6ff00;
  font-size: 10px;
  font-weight: 950;
}

.pcwrg-paper {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px);
  border-radius: 6px;
  color: #121719;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.pcwrg-paper:before {
  content: "erdem evren demo";
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-28deg);
  color: rgba(140, 180, 0, 0.08);
  font-size: clamp(46px, 8vw, 110px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.pcwrg-paper > * {
  position: relative;
}

.pcwrg-paper h2,
.pcwrg-paper h3,
.pcwrg-paper p {
  margin-top: 0;
}

.pcwrg-paper h2,
.pcwrg-paper h3 {
  color: #121719;
}

.pcwrg-paper p,
.pcwrg-paper td {
  color: #303b40;
  font-size: 12px;
  line-height: 1.5;
}

.pcwrg-paper-section {
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  margin-bottom: 13px;
  border: 1px solid #dfe4e7;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
}

.pcwrg-paper-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 13px 0;
}

.pcwrg-paper-kpi {
  min-width: 0;
  padding: 11px 8px;
  border: 1px solid #dfe4e7;
  border-radius: 7px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
}

.pcwrg-paper-kpi small,
.pcwrg-paper-label {
  display: block;
  color: #617078;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.pcwrg-paper-kpi strong {
  display: block;
  margin: 5px 0;
  color: #121719;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 950;
}

.pcwrg-paper-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pcwrg-paper-table th,
.pcwrg-paper-table td {
  padding: 8px 9px;
  border: 1px solid #dfe4e7;
  color: #182025;
  font-size: 11px;
  line-height: 1.32;
  text-align: left;
  overflow-wrap: anywhere;
}

.pcwrg-paper-table th {
  background: #f3f6f7;
  font-weight: 950;
}

.report-list {
  display: grid;
  gap: 12px;
}

.report-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px auto;
  gap: 16px;
  align-items: center;
}

.report-row-title {
  margin: 4px 0 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.report-score {
  text-align: center;
}

.report-score strong {
  display: block;
  color: #c6ff00;
  font-size: 36px;
  line-height: 1;
}

.report-score span {
  color: rgba(247, 250, 252, 0.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-actions form {
  margin: 0;
}

.pcwrg-generator {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.pcwrg-side {
  display: grid;
  gap: 14px;
}

.pcwrg-section-option {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 22px;
  gap: 11px;
  align-items: center;
  min-height: 68px;
  padding: 11px;
  margin-bottom: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.pcwrg-section-option input {
  width: 17px;
  height: 17px;
  accent-color: #c6ff00;
}

.pcwrg-option-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 255, 0, 0.42);
  border-radius: 6px;
  color: #c6ff00;
  background: rgba(198, 255, 0, 0.07);
  font-weight: 950;
}

@media (max-width: 1100px) {
  .pcwrg-header,
  .pcwrg-generator,
  .report-row {
    grid-template-columns: 1fr;
  }

  .pcwrg-controls,
  .report-actions {
    justify-content: stretch;
  }

  .pcwrg-controls .pcwrg-btn,
  .report-actions .pcwrg-btn,
  .report-actions form {
    flex: 1 1 170px;
  }

  .pcwrg-snapshot,
  .pcwrg-completion,
  .pcwrg-grid-5,
  .pcwrg-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcwrg-grid-3,
  .pcwrg-paper-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav-actions,
  .site-nav-actions .pcwrg-btn,
  .site-nav-actions form {
    width: 100%;
  }

  .pcwrg-shell {
    padding: 12px;
    border-radius: 0;
  }

  .pcwrg-brand {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
  }

  .pcwrg-brand-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .pcwrg-controls,
  .pcwrg-grid-2,
  .pcwrg-grid-3,
  .pcwrg-grid-4,
  .pcwrg-grid-5,
  .pcwrg-snapshot,
  .pcwrg-completion,
  .pcwrg-paper-kpis {
    grid-template-columns: 1fr;
  }

  .pcwrg-tabs {
    grid-template-columns: repeat(5, minmax(156px, 1fr));
  }

  .pcwrg-controls .pcwrg-btn {
    width: 100%;
  }

  .pcwrg-snapshot-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 11px;
  }

  .pcwrg-list li {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .pcwrg-list .pcwrg-badge {
    justify-self: start;
    grid-column: 2;
  }
}
