:root {
  --ps-bg: #0a0a10;
  --ps-surface: rgba(255, 255, 255, 0.05);
  --ps-surface-strong: rgba(255, 255, 255, 0.08);
  --ps-border: rgba(255, 255, 255, 0.12);
  --ps-text: #f3f4f6;
  --ps-muted: rgba(255, 255, 255, 0.68);
  --ps-link: #c8f73c;
  --ps-accent: #b5e835;
  --ps-accent-strong: #9dd420;
  --ps-accent-text: #0f1a00;
  --ps-danger: #ff7676;
}

.SummaryOfItem {
  font-size: medium;
  font-weight: bold;
  padding-top: 24px;
  padding-bottom: 10px;
}

.SummaryOfItem::before {
  content: '▼';
}

.SummaryOfItem[details-hidden='true']::before {
  content: '▶';
}

.SummaryOfItem[details-hidden='false']::before {
  content: '▼';
}

.DetailsUnit {
  padding-bottom: 6px;
}

.UnitInfo {
  font-size: x-small;
  padding-bottom: 5px;
}

.UnitInfo p {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 5px;
  padding-left: 24px;
}

.Field input {
  width: 100%;
}

.Url,
.Address,
.Field {
  padding-top: 10px;
  padding-bottom: 10px;
}

fieldset {
  margin-top: 20px;
  padding-top: 20px;
}

.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #4caf50;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  max-width: 90%;
  width: fit-content;
  text-align: center;
  z-index: 1000;
  white-space: normal;
  word-break: break-word;
}

.ps-screen-brand {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 24px 0;
}

.ps-screen-brand__logo {
  display: block;
  width: min(188px, 56vw);
  height: auto;
  max-height: 68px;
}

.page-title,
.upload-title,
.hw-title {
  color: var(--ps-text);
  letter-spacing: -0.02em;
}

.ps-card {
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

input,
select,
textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ps-border);
  color: var(--ps-text);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

label {
  color: var(--ps-muted);
}
