/* Stock history visual refresh. Header, sidebar and behavior stay unchanged. */
#stockRegistry.view.active {
  position: relative;
  min-height: calc(100vh - var(--topbar-height, 112px));
  padding: 28px 38px 42px;
  overflow: auto;
  background:
    radial-gradient(circle at 86% 102%, rgba(0, 87, 217, 0.08) 0 1.4px, transparent 1.6px) 0 0 / 13px 13px,
    linear-gradient(180deg, #f7faff 0%, #f6f8fc 100%);
}

#stockRegistry.view.active::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 620px;
  height: 360px;
  border-radius: 55% 45% 0 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 87, 217, 0.09) 0 1.5px, transparent 1.7px) 0 0 / 12px 12px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

#stockRegistry .dashboard-stock-metrics,
#stockRegistry .panel {
  position: relative;
  z-index: 1;
}

#stockRegistry .dashboard-stock-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: 0 0 34px;
}

#stockRegistry .metric {
  min-height: 122px;
  margin: 0;
  padding: 26px 26px 24px 104px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid #dbe4f2;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 26, 68, 0.07);
  overflow: hidden;
}

#stockRegistry .metric::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.42), transparent 30%), var(--stock-color, #1767d8);
  box-shadow: 0 12px 20px color-mix(in srgb, var(--stock-color, #1767d8) 28%, transparent);
}

#stockRegistry .metric::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background: #ffffff;
  -webkit-mask: var(--stock-icon) center / contain no-repeat;
  mask: var(--stock-icon) center / contain no-repeat;
}

#stockRegistry .metric:nth-child(1) {
  --stock-color: #1767d8;
  --stock-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .metric:nth-child(2) {
  --stock-color: #22a855;
  --stock-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3Cpath d='M7 5.8 16.8 11'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .metric:nth-child(3) {
  --stock-color: #fb8500;
  --stock-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='4' width='12' height='17' rx='2'/%3E%3Cpath d='M9 4.5h6M9 9h6M9 13h6M9 17h4'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .metric:nth-child(4) {
  --stock-color: #7c5ce1;
  --stock-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 14.2 8.8 20 11l-5.8 2.2L12 19l-2.2-5.8L4 11l5.8-2.2L12 3Z'/%3E%3Cpath d='M19 3v4M21 5h-4'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .metric span {
  margin: 0 0 10px;
  color: #536487;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}

#stockRegistry .metric strong {
  color: var(--stock-color, #1767d8);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

#stockRegistry .panel {
  min-height: 282px;
  margin: 0;
  padding: 34px 34px 36px;
  border: 1px solid #dbe4f2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(7, 26, 68, 0.08);
}

#stockRegistry .panel-heading {
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  align-items: center;
  border: 0;
}

#stockRegistry .panel-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 42px;
  color: #071a44;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
}

#stockRegistry .panel-heading h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  background: #1767d8;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h8M8 9h2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h8M8 9h2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

#stockRegistry .report-table-wrap {
  width: 100%;
  max-height: none;
  margin: 0;
  overflow: auto;
  border: 1px solid #dbe4f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#stockRegistry .report-table-wrap table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

#stockRegistry .report-table-wrap th,
#stockRegistry .report-table-wrap td {
  height: 72px;
  padding: 0 22px;
  color: #071a44;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  vertical-align: middle;
  border: 0;
  border-bottom: 1px solid #e8eef7;
}

#stockRegistry .report-table-wrap th {
  position: relative;
  height: 74px;
  padding-left: 50px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
  color: #536487;
  font-size: 15px;
  font-weight: 900;
}

#stockRegistry .report-table-wrap th::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  background: var(--history-head-color, #536487);
  -webkit-mask: var(--history-head-icon) center / contain no-repeat;
  mask: var(--history-head-icon) center / contain no-repeat;
}

#stockRegistry .report-table-wrap th:nth-child(1) {
  --history-head-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .report-table-wrap th:nth-child(2) {
  --history-head-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .report-table-wrap th:nth-child(3) {
  --history-head-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6M9 15h6M9 11h2'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .report-table-wrap th:nth-child(4) {
  --history-head-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .report-table-wrap th:nth-child(5) {
  --history-head-color: #22a855;
  --history-head-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3Cpath d='M7 5.8 16.8 11'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .report-table-wrap th:nth-child(6) {
  --history-head-color: #7c5ce1;
  --history-head-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 14.2 8.8 20 11l-5.8 2.2L12 19l-2.2-5.8L4 11l5.8-2.2L12 3Z'/%3E%3C/g%3E%3C/svg%3E");
}

#stockRegistry .report-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

#stockRegistry .report-table-wrap td {
  font-weight: 700;
}

#stockRegistry .report-table-wrap td:nth-child(3) {
  color: #0057d9;
  font-weight: 900;
}

#stockRegistry .report-table-wrap td:nth-child(5) {
  color: #22a855;
  font-weight: 900;
}

#stockRegistry .report-table-wrap td:nth-child(6) {
  color: #7c5ce1;
  font-weight: 900;
}

@media (max-width: 1400px) {
  #stockRegistry .dashboard-stock-metrics {
    gap: 18px;
  }

  #stockRegistry .metric {
    padding-left: 92px;
  }

  #stockRegistry .metric::before {
    left: 22px;
    width: 58px;
    height: 58px;
  }

  #stockRegistry .metric::after {
    left: 36px;
  }
}

/* Compact stock history scale to match the rest of the operational pages. */
#stockRegistry.view.active {
  padding: 24px 28px 34px;
}

#stockRegistry .dashboard-stock-metrics {
  gap: 18px;
  margin-bottom: 22px;
}

#stockRegistry .metric {
  min-height: 88px;
  padding: 18px 20px 16px 82px;
  border-radius: 12px;
}

#stockRegistry .metric::before {
  left: 22px;
  width: 48px;
  height: 48px;
}

#stockRegistry .metric::after {
  left: 34px;
  width: 24px;
  height: 24px;
}

#stockRegistry .metric span {
  margin-bottom: 6px;
  font-size: 13px;
}

#stockRegistry .metric strong {
  font-size: 28px;
}

#stockRegistry .panel {
  min-height: 0;
  padding: 26px 28px 30px;
  border-radius: 14px;
}

#stockRegistry .panel-heading {
  margin-bottom: 20px;
}

#stockRegistry .panel-heading h2 {
  padding-left: 34px;
  font-size: 19px;
}

#stockRegistry .panel-heading h2::before {
  width: 22px;
  height: 22px;
}

#stockRegistry .report-table-wrap {
  border-radius: 10px;
}

#stockRegistry .report-table-wrap th,
#stockRegistry .report-table-wrap td {
  height: 50px;
  padding: 0 16px;
  font-size: 13px;
}

#stockRegistry .report-table-wrap th {
  height: 48px;
  padding-left: 40px;
  font-size: 12px;
}

#stockRegistry .report-table-wrap th::before {
  left: 16px;
  width: 14px;
  height: 14px;
}
