/* ORDARS work PC앱 기기 등록 승인 페이지 (/work/device) — 독립 레이아웃 */
.wd-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, sans-serif;
  padding: 20px;
  box-sizing: border-box;
}
.wd-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  padding: 36px 32px;
  text-align: center;
}
.wd-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #3e6187;
  margin-bottom: 22px;
}
.wd-logo span { color: #4338ca; }
.wd-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.wd-icon-ask { background: #eef2ff; }
.wd-icon-success { background: #dcfce7; color: #15803d; font-weight: 800; }
.wd-icon-expired { background: #fef3c7; color: #b45309; font-weight: 800; }
.wd-title {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  margin: 0 0 16px;
}
.wd-title strong { color: #4338ca; }
.wd-device-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wd-device-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6b7280;
}
.wd-device-row strong { color: #111827; font-weight: 600; }
.wd-code {
  font-family: ui-monospace, monospace;
  letter-spacing: 0.15em;
  color: #4338ca !important;
}
.wd-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 20px;
}
.wd-desc strong { color: #111827; }
.wd-actions { margin: 0; }
.wd-company-list {
  text-align: left;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wd-company-label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 2px;
}
.wd-company-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}
.wd-company-item input { accent-color: #4338ca; }
.wd-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.wd-btn-primary { background: #4338ca; color: #fff; }
.wd-btn-primary:hover { background: #3730a3; }

/* 다운로드 페이지 (/work/download) */
.wd-dl-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.wd-dl-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 10px;
  background: #4338ca;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.wd-dl-btn:hover { background: #3730a3; }
.wd-dl-name { font-size: 15px; font-weight: 700; }
.wd-dl-sub { font-size: 11px; opacity: 0.85; }
.wd-dl-disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: default;
}
.wd-dl-disabled:hover { background: #f3f4f6; }
.wd-dl-note { font-size: 11px !important; color: #9ca3af !important; margin-bottom: 0 !important; }
