:root {
  --canon-red: #c90100;
  --canon-red-dark: #a90000;
  --dark: #121820;
  --dark-2: #1d2733;
  --panel: #f5f6f8;
  --line: #e5e7eb;
  --text: #1f2933;
  --muted: #6b7280;
  --soft: #f8fafc;
}

html,
body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background: var(--panel);
  color: var(--text);
}

.pc-shell {
  height: 100vh;
  overflow: hidden;
  display: flex;
}

.pc-sidebar {
  width: 220px;
  height: 100vh;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  color: white;
  padding: 22px 16px;
}

.pc-logo {
  font-size: 23px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.pc-logo span {
  font-weight: 300;
}


.pc-logo-bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  opacity: .5;
}

.pc-logo-bottom img {
  width: 140px;
  height: auto;
}

.pc-nav {
  display: block;
  color: rgba(255,255,255,.72);
  padding: 11px 13px;
  border-radius: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: 700;
  background: var(--muted);
}

.pc-nav i {
  width: 22px;
}

.pc-nav:hover,
.pc-nav.active {
  background: var(--canon-red);
  color: white;
  text-decoration: none;
}

.pc-main {
  flex: 1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pc-topbar {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 18px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-topbar h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}

.pc-topbar p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pc-download {
  background: var(--canon-red);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
}

.pc-download:hover {
  color: white;
  text-decoration: none;
  background: var(--canon-red-dark);
}

.pc-content {
  flex: 1;
  min-height: 0;
  height: calc(100vh - 86px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 16px;
  padding: 16px;
}

/* LEFT ISSUE LIST */

.pc-list {
  height: 100%;
  overflow-y: auto;
  padding-right: 4px;
}

.pc-list-tools {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--panel);
  padding-bottom: 8px;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 6px;
}

.pc-list-tools input,
.pc-list-tools select {
  width: 100%;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 6px 9px;
  background: white;
  font-size: 12px;
}

.pc-list-tools select {
  font-weight: 700;
}

.pc-issue-card {
  position: relative;
  cursor: pointer;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 11px 22px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .045);
  opacity: .74;
  /*filter: saturate(.6);*/
  transition:
    opacity .15s ease,
    filter .15s ease,
    transform .15s ease,
    box-shadow .15s ease,
    border-color .15s ease,
    background .15s ease;
}

.pc-issue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, .04);
  pointer-events: none;
  transition: opacity .25s ease;
}

.pc-issue-card:hover {
  opacity: .9;
  filter: saturate(.85);
  transform: translateY(-1px);
  border-color: rgba(201, 1, 0, .55);
  box-shadow: 0 5px 14px rgba(15, 23, 42, .08);
  background: #fff;
}

.pc-issue-card:hover::after {
  opacity: .08;
}

/*.pc-issue-card.active {*/
/*  opacity: 1;*/
/*  filter: none;*/
/*  background:  var(--canon-red-dark);*/
/*  border-color: var(--dark-2);*/
/*  box-shadow: 0 0 0 2px rgba(201, 1, 0, .10);*/
/*}*/

.pc-issue-card.active {
    background: color-mix(in srgb, #fde8e8 100%, transparent); /* modern; or use rgba(...) */
    /*backdrop-filter: blur(10px) saturate(90%);*/
    /*-webkit-backdrop-filter: blur(10px) saturate(90%);*/
    border: 1px solid rgba(201,1,0,0.18);
    box-shadow: 0 6px 20px rgba(201,1,0,0.08);
}

/*.pc-issue-card.active .pc-status{*/
/*    color:#fff;*/

/*}*/

.pc-issue-card.active::after {
  opacity: 0;
}

.pc-card-number {
  position: absolute;
  top: 7px;
  right: 9px;
  font-size: 9px;
  font-weight: 900;
  color: #bdbdbd;
  letter-spacing: .05em;
}

.pc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.pc-card-top strong {
  color: var(--dark-2);
  font-size: 13.5px;
  /*line-height: 1.1;*/
}

.pc-status {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 7px;
  padding: 4px 6px;
  line-height: 1.15;
  min-width: 62px;
  text-align: center;
}

.pc-status.success {
  background: #e8f7ee;
  color: #147a3d;
}

.pc-status.warning {
  background: #fff4df;
  color: #b7791f;
}

.pc-status.info {
  background: #e8f1ff;
  color: #0052cc;
}

.pc-status.danger {
  background: #fde8e8;
  color: #b91c1c;
}

.pc-issue-level {
  margin-top: 7px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--canon-red);
  font-size: 7px;
  line-height: 1.2;
}

.pc-issue-path {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.25;
  /*font-weight: 700;*/
}

.pc-meta {
  display: block;
  margin: 0 0 5px;
  color: var(--dark-2);
  font-size: 8px;
  line-height: 1.2;
}

.pc-image-indicator {
  position: absolute;
  right: 10px;
  bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 900;
  opacity: .75;
}

.pc-image-indicator i {
  font-size: 10px;
}

.pc-issue-card:hover .pc-image-indicator,
.pc-issue-card.active .pc-image-indicator {
  color: var(--canon-red);
  opacity: 1;
}

/* PAGINATION */

.pc-pagination {
  position: sticky;
  bottom: 0;
  z-index: 20;
  background: var(--panel);
  padding: 8px 0 0;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 11px;
}

.pc-pagination select {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 3px 5px;
  background: white;
  font-size: 11px;
}

.pc-page-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pc-pagination button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  padding: 5px 7px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.pc-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

#pageInfo {
  font-size: 10px;
  white-space: nowrap;
}

/* RIGHT DETAIL PANEL */

.pc-detail {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  height: 100%;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .09);
  padding: 0;
}

.pc-empty-detail {
  color: var(--muted);
  text-align: center;
  margin-top: 180px;
}

.pc-empty-detail h2 {
  color: var(--text);
  font-weight: 900;
}

.pc-detail-header {
  position: sticky;
  top: 0;
  z-index: 30;
  /*background: white;*/
background:
radial-gradient(circle at center,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 40%,
rgba(253,232,232,0.35) 65%,
rgba(253,232,232,0.75) 90%,
rgba(253,232,232,1) 100%);




  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(15, 23, 42, .05);
}

.pc-eyebrow {
  color: var(--canon-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.pc-detail-header h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  color: #111827;
}

.pc-detail-path {
  margin-top: 8px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
}

.pc-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 11px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.pc-detail-meta i {
  color: var(--canon-red);
  margin-right: 5px;
}

.pc-status-large {
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 11px;
  padding: 6px 9px;
}

.pc-detail-section {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.pc-section-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
  margin-bottom: 14px;
}

/* IMAGES */

.pc-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.pc-image-card {
  aspect-ratio: 4 / 3;
  display: block;
  background: #111827;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #1f2937;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  text-align:center;
}

.pc-image-card:hover {
  text-decoration: none;
}

.pc-image-card img {
  width: 100%;
  height: 150px;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.pc-image-card span {
  display: block;
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  text-transform: uppercase;
  background: rgba(0,0,0,.35);
}

.pc-image-empty {
  background: #f3f4f6;
  border: 1px dashed #cbd5e1;
  box-shadow: none;
  opacity: .75;
}

.pc-image-empty img {
  opacity: .72;
  object-fit: contain;
  padding: 58px 28px 28px 28px;
  opacity: .50;
}

.pc-image-empty span {
  background: transparent;
  color: #9ca3af;
  opacity: .5;
}

/* FIELDS */

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

.pc-detail-grid-two {
  grid-template-columns: 1fr 2fr;
}

.pc-field {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.pc-field label {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.pc-field strong {
  display: block;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  word-break: break-word;
}

.pc-field a,
.pc-detail-meta a {
  color: var(--canon-red);
  text-decoration: none;
}

.pc-field a:hover,
.pc-detail-meta a:hover {
  text-decoration: underline;
}

.pc-comments {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  line-height: 1.6;
  color: #374151;
}

.pc-device-info {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  white-space: pre-wrap;
}


.pc-sidebar {
  width: 220px;
  height: 100vh;
  overflow: hidden;
  flex-shrink: 0;
  /*background: linear-gradient(180deg, #101820, #1a2430);*/
  background:white;
  color: white;
  padding: 22px 16px;
}

.pc-logo {
  margin: 0 0 24px 0;
  padding: 12px;

  background: #fff;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.pc-logo img {
  max-width: 100%;
  width: 120px;
  height: auto;
}

.pc-topbar {
  border-bottom: 1px solid var(--line);
  padding: 18px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-topbar-red {
  background:
    linear-gradient(90deg, rgba(201,1,0,.98), rgba(169,0,0,.96)),
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.18), transparent 32%);
  color: white;
  border-bottom: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .15);
}

.pc-topbar-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pc-topbar-brand img {
  width: 155px;
  height: auto;
  flex-shrink: 0;
}

.pc-topbar h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  color: white;
}

.pc-topbar p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.pc-download-light {
  background: white;
  color: var(--canon-red);
  border: 1px solid rgba(255,255,255,.35);
}

.pc-download-light:hover {
  background: #f8fafc;
  color: var(--canon-red-dark);
}



.pc-search-wrap {
  position: relative;
}

.pc-search-wrap input {
  padding-right: 34px;
}

#clearIssueSearch {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
  display: none;
}

#clearIssueSearch:hover {
  color: var(--canon-red);
}



.pc-result-count {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 0 2px;
  margin-top: -2px;
}





/***REPORTERS SCREEN****/

.pc-report-content {
  height: calc(100vh - 86px);
  /*overflow: auto;*/
  padding: 18px;
}

.pc-summary-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.pc-summary-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
}

.pc-summary-card.success  { background: #e8f7ee; }
.pc-summary-card.warning  { background: #fff4df; }
.pc-summary-card.danger  { background: #fde8e8; }
.pc-summary-card.info  { background: #e8f1ff; }

.pc-summary-card strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.pc-summary-card span {
  color: var(--muted);
  font-weight: 800;
}

.pc-summary-card.success strong { color: #147a3d; }
.pc-summary-card.warning strong { color: #b7791f; }
.pc-summary-card.danger strong { color: #b91c1c; }
.pc-summary-card.info strong { color: #0052cc; }


.pc-reporter-tools {
  display: grid;
  grid-template-columns: 190px minmax(260px, 420px);
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.pc-reporter-tools select,
.pc-reporter-tools input {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: white;
  font-size: 13px;
}

.pc-reporter-tools select {
  font-weight: 800;
}

#clearReporterSearch {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
  display: none;
}

#clearReporterSearch:hover {
  color: var(--canon-red);
}

.pc-reporter-table-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: auto;
}

.pc-reporter-table {
  width: 100%;
  border-collapse: collapse;
}

.pc-reporter-table th,
.pc-reporter-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}

.pc-reporter-table th {
  background: #f8fafc;
  color: #4b5563;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.pc-check {
  font-size: 18px;
  font-weight: 900;
}

.pc-check.yes { color: #147a3d; }
.pc-check.no { color: #b91c1c; }

.pc-row-action {
  color: var(--canon-red);
  font-weight: 800;
  text-decoration: none;
}

.pc-row-action:hover {
  text-decoration: underline;
}


.pc-reporter-table th.sortable {
  cursor: pointer;
  user-select: none;
}

.pc-reporter-table th.sortable::after {
  content: " ↕";
  color: #9ca3af;
  font-size: 10px;
}

.pc-reporter-table th.sortable.sort-asc::after {
  content: " ▲";
  color: var(--canon-red);
}

.pc-reporter-table th.sortable.sort-desc::after {
  content: " ▼";
  color: var(--canon-red);
}

.pc-reporter-table thead th {
  position: sticky;
  top: 0;
  z-index: 15;
  background: #f8fafc;
  border-bottom: 2px solid var(--line);
}


.pc-report-content {
  height: calc(100vh - 86px);
  overflow: hidden;
  padding: 18px;

  display: flex;
  flex-direction: column;
}

.pc-summary-row {
  flex-shrink: 0;
}

.pc-reporter-tools {
  flex-shrink: 0;
  margin-bottom: 12px;
}

.pc-reporter-table-wrap {
  flex: 1;
  min-height: 0;
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.pc-reporter-table thead th {
  position: sticky;
  top: 0;
  z-index: 15;
  background: #f8fafc;
  border-bottom: 2px solid var(--line);
  box-shadow: 0 2px 4px rgba(0,0,0,.04);
}


.system-label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  margin-bottom: 6px;
}

.jira-label {
  color: #2684FF;
}

.pulse-label {
  color: #c90100;
}



.pc-action-btn {
  display: inline-block;
  min-width: 80px;
  text-align: center;

  padding: 7px 12px;
  border-radius: 8px;

  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.pc-action-btn.create {
  background: var(--canon-red);
  color: white;
}

.pc-action-btn.enable {
  background: #fff4df;
  color: #b7791f;
}

.pc-action-btn.manage {
  background: var(--muted);
  color: #f3f4f6;
  border: 1px solid #d1d5db;
}


.pc-pulse-start {
  border-left: 3px solid rgba(201, 1, 0, .12) !important;
}

.pc-col-centered{
    text-align:center !important;
}


.pc-summary-card small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.3;
    color: #9ca3af;
    font-weight: 500;
}



.pc-help-callout {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;

  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--canon-red);
  border-radius: 10px;

  padding: 12px 14px;
  margin: -4px 0 14px;

  box-shadow: 0 4px 12px rgba(15, 23, 42, .045);
}

.pc-help-icon {
  color: var(--canon-red);
  font-size: 16px;
  margin-top: 1px;
}

.pc-help-callout strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}

.pc-help-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}



/* user */
.pc-user-content {
  height: calc(100vh - 86px);
  overflow: auto;
  padding: 24px;
}

.pc-user-panel {
  max-width: 760px;
  margin: 0 auto;
}

.pc-user-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .07);
  overflow: hidden;
}

.pc-user-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.pc-user-header h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
}

.pc-user-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

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

.pc-user-section h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
}

.pc-user-help {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.pc-user-section label {
  display: block;
  margin: 14px 0 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--muted);
}

.pc-user-section input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 12px;
  font-size: 14px;
}

.pc-user-primary,
.pc-user-secondary {
  margin-top: 18px;
  border: none;
  border-radius: 9px;
  padding: 11px 15px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.pc-user-primary {
  background: var(--canon-red);
  color: white;
}

.pc-user-primary.success {
  background: #147a3d;
}

.pc-user-primary.danger {
  background: #b91c1c;
}

.pc-user-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.pc-password-form {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pc-user-alert {
  margin-bottom: 14px;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
}

.pc-user-alert.danger {
  background: #fde8e8;
  color: #b91c1c;
}

.pc-link-button {
  margin-top: 12px;
  border: none;
  background: transparent;
  color: var(--canon-red);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.pc-link-button:hover {
  text-decoration: underline;
}

.pc-email-domain {
  font-weight: 700;
}

.pc-email-warning {
  font-weight: 700;
  color: #b91c1c;
}

/*.pc-status.warning {*/
/*  background: #fff7ed;*/
/*  color: #c2410c;*/
/*}*/


.pc-access-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 108px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
}

.pc-access-toggle.enabled {
  justify-content: flex-start;
  background: #dcfce7;
  color: #166534;
}

.pc-access-toggle.disabled {
  justify-content: flex-end;
  background: #fee2e2;
  color: #991b1b;
}

.pc-access-toggle.locked {
  background: #e5e7eb;
  color: #6b7280;
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.pc-access-toggle-knob {
  position: absolute;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
}

.pc-access-toggle.enabled .pc-access-toggle-knob {
  right: 4px;
}

.pc-access-toggle.disabled .pc-access-toggle-knob {
  left: 4px;
}

.pc-access-toggle-text {
  position: relative;
  z-index: 1;
}

.pc-access-toggle.enabled .pc-access-toggle-text {
  margin-right: 26px;
}

.pc-access-toggle.disabled .pc-access-toggle-text {
  margin-left: 26px;
}




/* LOGIN */

.pc-login-page {
  height: 100vh;
  overflow: hidden;
  background: #fff;

}

.pc-login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: white;
  padding:0;
  margin:0;
}

.pc-login-left {
  position: relative;
  padding: 58px 70px;
  background:
    linear-gradient(135deg, var(--canon-red), var(--canon-red-dark));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-login-brand {
  display: inline-flex;
  width: fit-content;
  /*padding: 16px 22px;*/
  margin-bottom: 10px;
  /*background:*/
  /*  linear-gradient(135deg, #111827, #1f2937);*/
  /*border-left: 5px solid white;*/
  /*border-radius: 14px;*/
  /*box-shadow: 0 10px 24px rgba(15, 23, 42, .22);*/
}
.pc-login-brand img {
  width: 200px;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.pc-login-left h1 {
  margin: 0 0 14px;
  max-width: 560px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
  color: #111827;
}

.pc-login-left p {
  margin: 0;
  max-width: 460px;
  color: #4b5563;
  line-height: 1.6;
  font-size: 16px;
}

.pc-login-features {
  margin-top: 34px;
}

.pc-login-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  font-size: 15px;
  font-weight: 800;
  color: #374151;
}

.pc-login-feature i {
  color: var(--canon-red);
  width: 18px;
}

.pc-login-wave {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(220,220,220,.45) 0 90px,
      rgba(200,200,200,.25) 90px 130px,
      transparent 130px
    ),
    repeating-radial-gradient(
      circle,
      rgba(255,255,255,.18) 0 3px,
      transparent 3px 34px
    );

  opacity: .5;
}

.pc-login-right {
  position: relative;
  padding: 54px 58px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.pc-canon-logo {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 22%;
  max-width: 140px;
  min-width: 90px;
}

.pc-canon-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.pc-login-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

.pc-login-form-logo {
  display: inline-flex;
width: clamp(160px, 28vw, 300px);
padding: 0 60px;
  margin-top: 24px;
  /*border:solid 1p
  x blue;*/
  
position: relative;
  z-index: 3;
  transform: translateY(50px);  
}

.pc-login-form-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.pc-kicker {
  color: var(--canon-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 10px;
}

.pc-login-card h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #111827;
}

.pc-login-subtitle {
  margin: 8px 0 30px;
  color: var(--muted);
  line-height: 1.5;
}

.pc-login-error {
  background: #fde8e8;
  color: #b91c1c;
  border: 1px solid #f8b4b4;
  padding: 11px 13px;
  border-radius: 9px;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 13px;
}

.pc-login-card label {
  display: block;
  margin: 16px 0 7px;
  font-size: 12px;
  font-weight: 900;
  color: #374151;
}

.pc-login-card input {
  width: 100%;
  height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 13px;
  font-size: 14px;
  font-family: inherit;
}

.pc-login-card input:focus {
  outline: none;
  border-color: var(--canon-red);
  box-shadow: 0 0 0 4px rgba(201,1,0,.12);
}

.pc-login-button {
  width: 100%;
  height: 48px;
  margin-top: 24px;
  border: none;
  border-radius: 8px;
  background: var(--canon-red);
  color: white;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.pc-login-button:hover {
  background: var(--canon-red-dark);
}

.pc-login-version {
  margin-top: 24px;
  color: #9ca3af;
  font-size: 12px;
  text-align: center;
}

.pc-login-left h1,
.pc-login-left p,
.pc-login-feature {
  color: white;
}

.pc-login-feature i {
  color: white;
}



/* RESPONSIVE */

@media (max-width: 1100px) {
  .pc-content {
    grid-template-columns: 320px 1fr;
  }

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

  .pc-detail-grid-two {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .pc-shell {
    height: 100vh;
    overflow: hidden;
  }

  .pc-sidebar {
    width: 64px;
    height: 100vh;
    min-height: 0;
  }

  .pc-logo {
    display: none;
    font-size: 12px;
    margin-bottom: 18px;
  }

  .pc-logo span {
    display: none;
  }

  .pc-nav {
    text-align: center;
    padding: 12px 8px;
    font-size: 0;
  }

  .pc-nav i {
    width: auto;
    font-size: 16px;
  }

  .pc-main {
    height: 100vh;
    overflow: hidden;
  }

  .pc-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 16px;
  }

  .pc-content {
    height: calc(100vh - 74px);
    overflow: hidden;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 38vh) 1fr;
    gap: 12px;
    padding: 12px;
  }

  .pc-list {
    height: 100%;
    overflow-y: auto;
  }

  .pc-detail {
    height: 100%;
    overflow-y: auto;
  }

  .pc-list-tools,
  .pc-pagination,
  .pc-detail-header {
    position: sticky;
  }

  .pc-list-tools {
    top: 0;
  }

  .pc-pagination {
    bottom: 0;
  }

  .pc-detail-header {
    top: 0;
  }

  .pc-image-grid {
    grid-template-columns: 1fr;
  }

  .pc-image-card {
    aspect-ratio: 4 / 3;
  }

  .pc-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .pc-canon-logo {
    width: 18%;
    min-width: 80px;
  }
}

@media (max-width: 900px) {
  .pc-canon-logo {
    width: 120px;
    top: 16px;
    right: 16px;
  }
}