:root {
  --bg-base: #eef2ff;
  --bg-surface: #ffffff;
  --border-color: #dde4f5;
  --text-primary: #1f2a56;
  --text-secondary: #7f8db3;
  --primary-color: #4b3bff;
  --primary-2: #1aa5ff;
  --danger: #ef4444;
  --success: #00b074;
  --sidebar-width: 256px;
  --shadow-lg: 0 20px 48px rgba(68, 89, 156, 0.18);
  --shadow-md: 0 8px 20px rgba(68, 89, 156, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: radial-gradient(1200px 500px at 10% -10%, #dbe5ff 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 0%, #d8edff 0%, transparent 60%),
    var(--bg-base);
}
.layout,
.auth-wrap {
  animation: pageFadeIn .5s ease-out both;
}
.bg-glow { position: fixed; z-index: 0; filter: blur(60px); pointer-events: none; opacity: .45; }
.glow-a { width: 340px; height: 340px; background: #7f8dff; top: -120px; left: -100px; animation: glowFloatA 13s ease-in-out infinite; }
.glow-b { width: 300px; height: 300px; background: #51c5ff; right: -80px; bottom: 10%; animation: glowFloatB 15s ease-in-out infinite; }
.hidden { display: none !important; }

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
  background: #f2f5fa;
}
.auth-card {
  width: min(920px, 94vw);
  min-height: 520px;
  display: grid;
  grid-template-columns: 330px 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9e1ef;
  border-radius: 3px;
  padding: 0;
  box-shadow: 0 24px 54px rgba(41, 54, 86, 0.18);
  animation: loginShellIn .7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 58px;
  background: #ffffff;
  animation: loginPanelIn .7s ease-out .1s both;
}
.auth-card h1 {
  margin: 0 0 44px;
  color: #0f62fe;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}
.auth-card p { color: var(--text-secondary); margin: 0 0 12px; }
.auth-card form {
  display: grid;
  gap: 12px;
}
.auth-card label {
  height: 38px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  margin: 0;
  border: 1px solid #dfe6f3;
  background: #fff;
  color: #a3afc4;
  font-size: 13px;
  font-weight: 600;
}
.auth-card label i {
  display: grid;
  place-items: center;
  height: 100%;
  border-right: 1px solid #edf1f7;
  font-size: 15px;
}
.auth-card input {
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0 12px;
  color: #22304f;
  outline: 0;
  box-shadow: none;
}
.auth-card input::placeholder {
  color: #aeb8ca;
}
.auth-card .btn.primary {
  width: 112px;
  height: 38px;
  margin-top: 0;
  border-radius: 2px;
  background: #2f80ed;
  border-color: #2f80ed;
  font-size: 12px;
  box-shadow: 0 8px 14px rgba(47, 128, 237, 0.24);
}
.login-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.remember-id {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  height: auto !important;
  border: 0 !important;
  background: transparent !important;
  color: #637294 !important;
  font-size: 12px !important;
  font-weight: 600;
  grid-template-columns: none !important;
}
.remember-id input {
  width: 14px;
  height: 14px;
  margin: 0;
}
.auth-card .msg {
  margin: 16px 0 0;
}
.auth-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #1e293b;
}
.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 20, 36, 0.06), rgba(11, 20, 36, 0.42));
  z-index: 2;
}
.visual-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 0 96px 72px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: loginSlide 10s ease-in-out infinite;
}
.slide-one {
  background-image:
    linear-gradient(180deg, rgba(9, 18, 32, 0.08), rgba(9, 18, 32, 0.28)),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1200&q=80");
}
.slide-two {
  background-image:
    linear-gradient(180deg, rgba(9, 18, 32, 0.04), rgba(9, 18, 32, 0.32)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
  animation-delay: 5s;
}
.visual-slide div {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 6px;
  color: #fff;
}
.visual-slide span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.visual-slide strong {
  font-size: 36px;
  line-height: 1;
}
.visual-dots {
  position: absolute;
  left: 72px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.visual-dots span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.visual-dots span:first-child {
  background: #2f80ed;
}
.btn {
  height: 40px; border-radius: 12px; border: 1px solid #cfd8f3; background: #fff;
  color: #30406b; font-weight: 700; padding: 0 12px; cursor: pointer; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn.primary { background: linear-gradient(135deg, var(--primary-color), #6f67ff); border-color: transparent; color: #fff; }
.btn.ghost { background: rgba(255,255,255,.25); color: #fff; border-color: rgba(255,255,255,.28); }
.btn:disabled {
  background: linear-gradient(135deg, #cfd8ef, #bcc8e6) !important;
  border-color: #b9c6e7 !important;
  color: #eef3ff !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 0.92;
}
.msg { min-height: 18px; color: #d14343; font-size: 13px; }

.layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}
.layout.sidebar-collapsed .sidebar {
  transform: translateX(-100%);
}
.layout.sidebar-collapsed .main-content {
  margin-left: 0;
  width: 100%;
}
.sidebar {
  width: calc(100% - 32px);
  margin: 16px 16px 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 16px;
  z-index: 15;
  box-shadow: var(--shadow-md);
  transition: transform .34s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sidebar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 170px;
  height: 74px;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid #eef2ff;
  text-decoration: none;
}
.sidebar-brand img {
  display: block;
  width: 100%;
  max-width: 146px;
  max-height: 52px;
  object-fit: contain;
}
.sidebar-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 0;
  min-width: 210px;
  max-width: 260px;
  padding: 12px 13px;
  border: 1px solid #dde5fb;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef3ff, #f6f8ff);
}
.sidebar-profile-text {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.sidebar-profile strong {
  color: #2f4584;
  font-size: 15px;
  line-height: 1.15;
}
.sidebar-profile span {
  color: #9aa8cc;
  font-size: 12px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-admin-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: .2s ease;
  padding: 0;
}
.profile-admin-btn:hover {
  transform: translateY(-1px);
  opacity: .85;
}
.profile-admin-btn i {
  font-size: 18px;
  line-height: 1;
  display: block;
}
.nav-menu, .sidebar-actions { display: flex; gap: 8px; }
.nav-menu {
  flex: 1 1 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}
.sidebar-actions {
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  gap: 12px;
  flex: 0 0 auto;
}
.sidebar-logout {
  flex: 0 0 auto;
  width: 40px;
  min-width: 40px;
  padding: 0;
  justify-content: center;
  gap: 0;
}
.sidebar-admin-btn {
  width: 40px;
  min-width: 40px;
  padding: 0;
  justify-content: center;
  gap: 0;
}
.sidebar-logout i {
  font-size: 18px;
  line-height: 1;
}
.sidebar-logout span {
  display: none;
}
.sidebar-admin-btn i {
  font-size: 18px;
  line-height: 1;
}
.nav-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 12px;
  color: #6474a3; text-decoration: none; border: 0; background: transparent;
  font: 600 15px 'Inter', sans-serif; text-align: left; cursor: pointer; transition: .2s ease;
  white-space: nowrap;
}
.nav-item.active, .nav-item:hover { background: linear-gradient(90deg, #eef1ff, #f6f7ff); color: var(--primary-color); }
.nav-subitem {
  padding: 11px 13px;
  font-size: 15px;
}
.nav-subitem i {
  font-size: 16px;
}
.text-danger { color: var(--danger); }

.main-content {
  margin-left: 0;
  padding: 24px;
  width: 100%;
  transition: margin-left .34s cubic-bezier(0.22, 0.61, 0.36, 1), width .34s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-toggle {
  display: none;
}
.top-header {
  display: none;
}
.top-header h2 { margin: 0; min-height: 1px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px;
  min-width: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn i {
  font-size: 18px;
  line-height: 1;
}

.dashboard-grid { display: grid; grid-template-columns: repeat(6, minmax(120px, 1fr)); gap: 14px; }
.content-section { display: grid; gap: 14px; }
.card {
  background: rgba(255,255,255,.86); backdrop-filter: blur(8px);
  border: 1px solid var(--border-color); border-radius: 18px; padding: 16px; box-shadow: var(--shadow-md);
  animation: riseIn .46s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.full-width { grid-column: 1 / -1; }
.half { grid-column: span 3; }
.welcome-card {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #4156ff 0%, #5a78ff 40%, #31a6ff 100%);
  color: #fff; border: 0;
}
.welcome-card h1 { margin: 0 0 6px; color: #fff; }
.welcome-card p { margin: 0; color: rgba(255,255,255,.88); }
.welcome-actions { display: flex; gap: 8px; }

.stat-card { grid-column: span 2; display: grid; gap: 8px; position: relative; overflow: hidden; }
.dashboard-grid .card:nth-child(1) { animation-delay: .02s; }
.dashboard-grid .card:nth-child(2) { animation-delay: .06s; }
.dashboard-grid .card:nth-child(3) { animation-delay: .10s; }
.dashboard-grid .card:nth-child(4) { animation-delay: .14s; }
.dashboard-grid .card:nth-child(5) { animation-delay: .18s; }
.dashboard-grid .card:nth-child(6) { animation-delay: .22s; }
.dashboard-grid .card:nth-child(7) { animation-delay: .26s; }
.stat-card::after {
  content: ""; position: absolute; right: -22px; top: -22px; width: 80px; height: 80px;
  border-radius: 50%; opacity: .16;
}
.accent-blue::after { background: #2d9cff; }
.accent-purple::after { background: #6f67ff; }
.accent-green::after { background: #00b074; }
.stat-label { font-size: 13px; color: var(--text-secondary); display: flex; gap: 6px; align-items: center; }
.stat-value { font-size: 34px; line-height: 1; }
.stat-note { color: #8d9cc0; font-size: 12px; }

.mini-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 10px; }
.mini-list li { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 12px; background: #f5f8ff; }
.mini-list li { transition: transform .24s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow .24s ease, background-color .24s ease; }
.mini-list li:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(78, 103, 180, .16); background: #edf3ff; }
.mini-list span { color: #6f7ca8; font-weight: 600; }
.mini-list b { color: #2b3674; font-size: 13px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { background: #eef3ff; color: #50649d; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.chip { animation: pulseSoft 3.6s ease-in-out infinite; }
.chip:nth-child(2) { animation-delay: .35s; }
.chip:nth-child(3) { animation-delay: .7s; }
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.section-title-row h3 {
  margin: 0;
}
.handover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}
.handover-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #dfe7fb;
  border-radius: 12px;
  background: #f7f9ff;
  position: relative;
}
.handover-card-btn {
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: .18s ease;
}
.handover-card-btn:hover {
  border-color: #b8c9f3;
  background: #f1f5ff;
}
.handover-card-btn.active {
  border-color: #88a9ea;
  background: #eef4ff;
}
.handover-card strong {
  color: #263a70;
  font-size: 15px;
}
.handover-card p {
  margin: 0;
  color: #6b7fb3;
  font-size: 13px;
}
.handover-label {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.handover-label.receive {
  background: #e8f7ff;
  color: #1677a8;
}
.handover-label.return {
  background: #fff3e8;
  color: #b65f16;
}
.handover-label.history {
  background: #eef4ff;
  color: #4a67b9;
}
.handover-count-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f80ed;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.handover-request-panel {
  margin-top: 12px;
  border: 1px solid #dfe7fb;
  border-radius: 10px;
  background: #f9fbff;
  padding: 10px;
}
.handover-history-wrap {
  display: grid;
  gap: 10px;
}
.handover-history-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.handover-history-filters label {
  display: grid;
  gap: 6px;
  color: #5f719f;
  font-size: 12px;
  font-weight: 700;
}
.handover-history-filters select {
  height: 38px;
  border: 1px solid #d6e0f5;
  border-radius: 10px;
  padding: 0 10px;
  background: #fff;
  color: #263a70;
  font-weight: 600;
}
.handover-request-list {
  display: grid;
  gap: 10px;
}
.handover-request-item {
  border: 1px solid #dfe7fb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.handover-request-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #f7f9ff;
  border-bottom: 1px solid #e6ecfa;
}
.handover-request-head strong {
  color: #263a70;
  font-size: 14px;
}
.handover-request-head span {
  color: #6b7fb3;
  font-size: 12px;
  font-weight: 700;
}
.handover-request-body {
  padding: 10px 12px 12px;
  display: grid;
  gap: 10px;
}
.handover-empty {
  padding: 14px;
  border: 1px dashed #d7e0f7;
  border-radius: 10px;
  background: #fbfcff;
  color: #7e8eb8;
  font-size: 13px;
}
.handover-history-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.handover-history-pageinfo {
  color: #6b7fb3;
  font-size: 12px;
  font-weight: 700;
}
.handover-history-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.handover-history-pages {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.handover-history-nav-btn,
.handover-history-page-btn {
  height: 32px;
  min-width: 32px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #d6e0f5;
  background: #fff;
  color: #35528c;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.handover-history-nav-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.handover-history-page-btn.active {
  background: linear-gradient(135deg, #4b8cff, #2f71ea);
  color: #fff;
  border-color: transparent;
}
.helpdesk-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.helpdesk-quick-btn {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #dfe7fb;
  border-radius: 12px;
  background: #f7f9ff;
  color: #263a70;
  text-align: left;
  cursor: pointer;
  transition: .18s ease;
}
.helpdesk-quick-btn:hover {
  border-color: #b8c9f3;
  background: #f1f5ff;
}
.helpdesk-quick-btn.active {
  border-color: #88a9ea;
  background: #eef4ff;
}
.helpdesk-quick-btn strong {
  font-size: 15px;
  font-weight: 700;
}
.helpdesk-quick-btn p {
  margin: 0;
  color: #6b7fb3;
  font-size: 13px;
  line-height: 1.5;
}
.helpdesk-quick-panel {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #dfe7fb;
  border-radius: 12px;
  background: #f7f9ff;
  color: #31456f;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 766px;
  box-sizing: border-box;
}
.helpdesk-quick-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.helpdesk-quick-meta span {
  color: #6b7fb3;
  font-size: 12px;
  font-weight: 700;
}
.helpdesk-quick-meta strong {
  display: inline;
  margin-top: 0;
  font-size: 13px;
}
.helpdesk-quick-panel > strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: #263a70;
}
.helpdesk-quick-panel p {
  margin: 8px 0 0;
  line-height: 1.6;
  color: #6b7fb3;
  font-size: 13px;
}
.helpdesk-form-requester {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #edf3ff;
  border: 1px solid #d8e2fb;
}
.helpdesk-form-requester span {
  color: #6b7fb3;
  font-size: 12px;
  font-weight: 700;
}
.helpdesk-form-requester strong {
  color: #263a70;
  font-size: 14px;
}
.helpdesk-form-requester small {
  color: #7a88b3;
  font-size: 12px;
  line-height: 1.4;
}
.helpdesk-form-section,
.helpdesk-summary-section {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #dbe4f7;
  border-radius: 14px;
  background: #fff;
}
.helpdesk-form-section h4,
.helpdesk-summary-section h4 {
  margin: 0;
  color: #263a70;
  font-size: 15px;
}
.helpdesk-form-grid {
  display: grid;
  gap: 12px;
}
.helpdesk-form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.helpdesk-form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.helpdesk-form-span-2 {
  grid-column: span 2;
}
.helpdesk-form-section label {
  display: grid;
  gap: 6px;
  color: #39517f;
  font-size: 13px;
  font-weight: 700;
}
.helpdesk-form-section input,
.helpdesk-form-section select,
.helpdesk-form-section textarea {
  width: 100%;
  border: 1px solid #d5def2;
  border-radius: 12px;
  background: #fff;
  color: #22345a;
  font: inherit;
}
.helpdesk-form-section input,
.helpdesk-form-section select {
  height: 44px;
  padding: 0 12px;
}
.helpdesk-form-section textarea {
  min-height: 110px;
  resize: vertical;
  padding: 12px;
  line-height: 1.6;
}
.helpdesk-form-section input[type="checkbox"] {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}
.helpdesk-checkbox-label {
  display: flex !important;
  flex-direction: column;
}
.helpdesk-check-option {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #d5def2;
  border-radius: 12px;
  background: #fff;
  color: #22345a !important;
  font-weight: 700 !important;
}
.helpdesk-check-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
}
.helpdesk-base-kit-block {
  display: grid;
  gap: 10px;
}
.helpdesk-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.helpdesk-step {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 10px 8px;
  border: 1px solid #dbe4f7;
  border-radius: 14px;
  background: #f7f9ff;
  color: #6b7fb3;
  text-align: center;
}
.helpdesk-step span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbe4f7;
  color: #5a6d9d;
  font-size: 12px;
  font-weight: 800;
}
.helpdesk-step strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.helpdesk-step.active {
  border-color: #7fa9f2;
  background: linear-gradient(180deg, #eef4ff, #f7fbff);
  color: #22345a;
  box-shadow: 0 8px 18px rgba(83, 129, 214, 0.12);
}
.helpdesk-step.active span {
  background: #2f71ea;
  color: #fff;
}
.helpdesk-step.completed {
  border-color: #cbdaf6;
  background: #f2f6ff;
  color: #4f6595;
}
.helpdesk-chip-stack {
  display: grid;
  gap: 8px;
}
.helpdesk-block-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.helpdesk-block-title span {
  color: #39517f;
  font-size: 13px;
  font-weight: 700;
}
.helpdesk-block-title small {
  color: #7a88b3;
  font-size: 12px;
}
.helpdesk-chip-grid {
  display: grid;
  gap: 8px;
}
.helpdesk-chip-grid-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.helpdesk-chip-grid-secondary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.helpdesk-chip-option {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d5def2;
  border-radius: 999px;
  background: #f7f9ff;
  color: #35528c !important;
  cursor: pointer;
  font-weight: 700 !important;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  text-align: center;
}
.helpdesk-chip-option:hover {
  border-color: #93b8ff;
  background: #eef5ff;
}
.helpdesk-chip-option.selected {
  border-color: #2f71ea;
  background: linear-gradient(135deg, #4b8cff, #2f71ea);
  color: #fff !important;
  box-shadow: 0 0 0 2px rgba(133, 190, 255, 0.3);
}
.helpdesk-chip-option:focus-visible {
  outline: 2px solid rgba(47, 128, 237, 0.24);
  outline-offset: 2px;
}
@media (max-width: 960px) {
  .helpdesk-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .helpdesk-chip-grid-primary,
  .helpdesk-chip-grid-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .helpdesk-owned-assets-grid {
    grid-template-columns: 1fr;
  }
}
.helpdesk-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.helpdesk-summary-item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e1e8fb;
  background: #f8fbff;
}
.helpdesk-summary-item span {
  display: block;
  margin-bottom: 4px;
  color: #6b7fb3;
  font-size: 12px;
  font-weight: 700;
}
.helpdesk-summary-item strong {
  color: #263a70;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}
.required-mark {
  color: #e03131;
}
.helpdesk-inline-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.helpdesk-inline-form label {
  display: grid;
  gap: 6px;
  color: #39517f;
  font-size: 13px;
  font-weight: 700;
}
.helpdesk-inline-form input,
.helpdesk-inline-form textarea {
  width: 100%;
  border: 1px solid #d5def2;
  border-radius: 12px;
  background: #fff;
  color: #22345a;
  font: inherit;
}
.helpdesk-inline-form input {
  height: 44px;
  padding: 0 12px;
}
.helpdesk-inline-form textarea {
  min-height: 160px;
  resize: vertical;
  padding: 12px;
  line-height: 1.6;
}
.helpdesk-inline-form input[type="file"] {
  height: auto;
  padding: 10px 12px;
}
.helpdesk-inline-form input:focus,
.helpdesk-inline-form textarea:focus {
  outline: 2px solid rgba(47, 128, 237, 0.18);
  border-color: #7ca6f6;
}
.helpdesk-inline-hint {
  margin: -2px 0 0;
  color: #7a88b3;
  font-size: 12px;
  line-height: 1.4;
}
.helpdesk-owned-assets-section {
  display: grid;
  gap: 10px;
}
.helpdesk-owned-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.helpdesk-owned-asset-chip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d5def2;
  border-radius: 12px;
  background: #fff;
  color: #22345a;
  cursor: pointer;
  font: inherit;
  text-align: left;
  gap: 8px;
  transition: .18s ease;
}
.helpdesk-owned-asset-chip span {
  display: inline-block;
  word-break: break-word;
  font-weight: 700;
  color: #22345a;
}
.helpdesk-owned-asset-label {
  font-size: 13px;
}
.helpdesk-owned-asset-code {
  font-size: 11px;
  font-weight: 600;
  color: #5f739f;
}
.helpdesk-owned-asset-chip:hover {
  border-color: #93b8ff;
  background: #f4f8ff;
}
.helpdesk-owned-asset-chip.selected {
  border-color: #2f71ea;
  background: linear-gradient(135deg, #4b8cff, #2f71ea);
  box-shadow: 0 0 0 2px rgba(133, 190, 255, 0.28);
}
.helpdesk-owned-asset-chip.selected span {
  color: #fff;
}
.helpdesk-attachment-list {
  display: grid;
  gap: 8px;
}
.helpdesk-attachment-empty {
  padding: 10px 12px;
  border: 1px dashed #d7e0f7;
  border-radius: 12px;
  color: #7e8eb8;
  font-size: 12px;
  background: #fbfcff;
}
.helpdesk-attachment-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #dbe4f7;
  border-radius: 12px;
  background: #fff;
}
.helpdesk-attachment-name {
  flex: 1;
  min-width: 0;
  color: #263a70;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.helpdesk-attachment-size {
  color: #7a88b3;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.helpdesk-attachment-remove {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #eef2ff;
  color: #5467b0;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.helpdesk-attachment-remove:hover {
  background: #dfe8ff;
}
.helpdesk-inline-msg {
  min-height: 18px;
  margin: 0;
}
.helpdesk-inline-actions {
  justify-content: flex-end;
}
.helpdesk-step-actions {
  justify-content: space-between;
}
.helpdesk-step-actions .secondary {
  margin-right: auto;
}
.handover-spec-empty {
  padding: 10px;
  border: 1px dashed #d7e0f7;
  border-radius: 8px;
  color: #7e8eb8;
  font-size: 12px;
}
.handover-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d5e8f;
  font-size: 13px;
  font-weight: 600;
}
.handover-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.return-pending-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #a16207;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  vertical-align: middle;
}

.return-select-chip-list {
  display: grid;
  gap: 8px;
}

.return-section-caption {
  margin: 2px 0 8px;
  font-size: 13px;
  color: #2f4d8b;
}

.return-select-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #c9d7fb;
  background: #f8fbff;
  color: #35528c;
  font-weight: 700;
  cursor: pointer;
  transition: .16s ease;
}

.return-select-chip:hover {
  border-color: #93b8ff;
  background: #eef5ff;
}

.return-select-chip.selected {
  border-color: #2f71ea;
  background: linear-gradient(135deg, #4b8cff, #2f71ea);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(133, 190, 255, 0.3);
}

.return-select-chip:disabled,
.return-select-chip.is-pending {
  cursor: not-allowed;
  background: #f3f6fd;
  color: #8da0cb;
  border-color: #d6e0f5;
}

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

.history-table th,
.history-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5ebfb;
  text-align: left;
  font-size: 13px;
  color: #314777;
}

.history-table th {
  background: #f7f9ff;
  font-weight: 700;
}

.handover-guidance-block {
  margin: 2px 0 2px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7e0f7;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
}

.table-wrap {
  overflow-x: auto;
}

.handover-guidance-title {
  font-size: 13px;
  font-weight: 800;
  color: #435590;
  margin-bottom: 8px;
}

.handover-guidance-content {
  color: #4d5f95;
  line-height: 1.58;
  font-size: 13px;
}

.handover-guidance-content h1,
.handover-guidance-content h2,
.handover-guidance-content h3,
.handover-guidance-content h4 {
  margin: 7px 0 5px;
  color: #34467f;
}

.handover-guidance-content ul,
.handover-guidance-content ol {
  margin: 6px 0 0 18px;
  padding: 0;
}
.handover-approve-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(10px) scale(.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes glowFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, 20px) scale(1.08); }
}
@keyframes glowFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -26px) scale(1.06); }
}
@keyframes pulseSoft {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-1px); opacity: .9; }
}
@keyframes loginShellIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loginPanelIn {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes loginSlide {
  0% { opacity: 0; transform: scale(1.05); }
  8% { opacity: 1; transform: scale(1.02); }
  46% { opacity: 1; transform: scale(1); }
  56% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}
.asset-lines {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.asset-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e1e8fb;
  border-radius: 12px;
  background: #f7f9ff;
}
.asset-line .label {
  color: #5d6f9f;
  font-weight: 700;
  font-size: 15px;
}
.asset-spec-list {
  display: grid;
  gap: 8px;
  width: 100%;
}
.asset-spec-item {
  padding: 0;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #dfe7fb;
  color: #304579;
  font-size: 13px;
  line-height: 1.45;
}
.asset-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  color: #223668;
  font-weight: 700;
}
.asset-toggle-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
}
.asset-toggle-left {
  color: #314a86;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vendor-favicon-wrap {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.vendor-favicon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
  display: inline-block;
}

.vendor-fallback-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #edf2ff;
  color: #5d6f9f;
  font-size: 11px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.asset-toggle-right {
  color: #6b7fb3;
  font-size: 12px;
  font-weight: 700;
}
.asset-toggle i {
  color: #7184b8;
  transition: transform .2s ease;
}
.asset-spec-item.open .asset-toggle i {
  transform: rotate(180deg);
}
.asset-detail {
  display: none;
  padding: 0 12px 12px;
}
.asset-spec-item.open .asset-detail {
  display: block;
}
.asset-detail-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6px 10px;
  background: #f7f9ff;
  border: 1px solid #e3e9fc;
  border-radius: 8px;
  padding: 10px;
}
.asset-detail-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dfe7fb;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f9ff;
}
.asset-detail-table th,
.asset-detail-table td {
  border-bottom: 1px solid #e3e9fc;
  padding: 8px 10px;
  font-size: 13px;
}
.asset-detail-table th {
  width: 140px;
  text-align: left;
  color: #5f719f;
  background: #f1f5ff;
  font-weight: 700;
}
.asset-detail-table td {
  color: #263a70;
}
.asset-detail-table tr:last-child th,
.asset-detail-table tr:last-child td {
  border-bottom: 0;
}
.asset-key {
  color: #5f719f;
  font-weight: 600;
}
.asset-val {
  color: #263a70;
}

@media (max-width: 1100px) {
  .dashboard-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
  .stat-card, .half { grid-column: span 1; }
  .welcome-card { grid-column: 1 / -1; }
  .handover-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .auth-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .auth-panel {
    padding: 38px 30px;
  }
  .auth-visual {
    min-height: 260px;
  }
  .visual-slide {
    padding: 0 0 58px 30px;
  }
  .visual-slide strong {
    font-size: 28px;
  }
  .visual-dots {
    left: 30px;
    bottom: 30px;
  }
  .sidebar {
    position: static;
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .sidebar-brand {
    width: 100%;
    max-width: 240px;
    align-self: flex-start;
  }
  .sidebar-profile {
    min-width: 0;
    width: 100%;
  }
  .nav-menu,
  .sidebar-actions {
    width: 100%;
  }
  .sidebar-actions {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .sidebar-logout { width: 100%; min-width: 100%; justify-content: center; }
  .sidebar-logout span { display: none; }
  .main-content { margin-left: 0; width: 100%; padding: 18px 12px 20px; }
  .profile-text span { max-width: 180px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .handover-grid { grid-template-columns: 1fr; }
  .handover-history-filters { grid-template-columns: 1fr; }
  .helpdesk-quick-actions { grid-template-columns: 1fr; }
  .helpdesk-form-head { flex-direction: column; }
  .helpdesk-form-grid-2,
  .helpdesk-form-grid-3,
  .helpdesk-summary-grid,
  .helpdesk-chip-grid { grid-template-columns: 1fr; }
  .helpdesk-form-span-2 { grid-column: auto; }
  .helpdesk-quick-panel { min-height: auto; }
  .helpdesk-history-tabs { grid-template-columns: 1fr 1fr; }
  .helpdesk-history-stage,
  .helpdesk-history-stage-empty { min-height: 360px; }
  .stat-card, .half, .full-width { grid-column: 1 / -1; }
  .welcome-card { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.helpdesk-filters{display:grid;grid-template-columns:180px 180px 1fr auto;gap:10px;margin-bottom:12px}
.helpdesk-filters select,.helpdesk-filters input{height:40px;border:1px solid #d5def2;border-radius:12px;padding:0 12px;background:#fff;color:#22345a}
.helpdesk-stats{display:flex;gap:10px;margin-bottom:12px}
.helpdesk-stat{padding:7px 11px;border:1px solid #d5def2;border-radius:12px;background:#f7faff;font-weight:700;color:#30446f;font-size:13px}
.helpdesk-layout{display:grid;grid-template-columns:360px 1fr;gap:12px;min-height:420px}
.helpdesk-history-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px}
.helpdesk-history-head p{margin:0;color:#5873a8;font-size:13px;line-height:1.5}
.helpdesk-history-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px}
.helpdesk-history-pageinfo{color:#5873a8;font-size:13px;font-weight:700}
.helpdesk-history-pagination{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.helpdesk-history-page-badge{display:inline-flex;align-items:center;justify-content:center;min-width:74px;height:34px;padding:0 12px;border:1px solid #d5def2;border-radius:999px;background:#f7faff;color:#30446f;font-size:13px;font-weight:700}
.helpdesk-detail-empty{margin:0;color:#6b7fb3;font-size:13px;line-height:1.6}
.helpdesk-empty-panel{min-height:520px}
.helpdesk-history-card-shell{
  padding: 24px;
}
.helpdesk-history-tabs{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.helpdesk-history-tab{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid #d9e3fa;
  border-radius: 18px;
  background: #f8faff;
  color: #263a70;
  text-align: left;
  cursor: pointer;
  transition: .18s ease;
}
.helpdesk-history-tab:hover{
  border-color: #b9caff;
  background: #f1f5ff;
}
.helpdesk-history-tab.active{
  border-color: #7fa1f0;
  background: #eef4ff;
  box-shadow: inset 0 0 0 1px rgba(127,161,240,.08);
}
.helpdesk-history-tab strong{
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}
.helpdesk-history-tab-count{
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f80ed;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.helpdesk-history-stage{
  min-height: 680px;
  border: 1px solid #edf2fb;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.helpdesk-history-stage-empty{
  min-height: 680px;
}
.helpdesk-ticket-list{border:1px solid #d5def2;border-radius:14px;overflow:auto;max-height:560px;background:#fff}
.helpdesk-ticket-item{width:100%;display:block;padding:10px 12px;border:0;border-bottom:1px solid #ecf1ff;cursor:pointer;background:#fff;text-align:left}
.helpdesk-ticket-item:last-child{border-bottom:0}
.helpdesk-ticket-item.active{background:#eef4ff}
.helpdesk-ticket-title{font-weight:700;font-size:14px;color:#233b67}
.helpdesk-ticket-meta{font-size:12px;color:#5873a8;display:flex;gap:8px;flex-wrap:wrap}
.helpdesk-unread{display:inline-flex;align-items:center;justify-content:center;min-width:20px;height:20px;border-radius:999px;background:#2563eb;color:#fff;font-size:11px;padding:0 6px}
.helpdesk-detail{border:1px solid #d5def2;border-radius:14px;background:#fff;padding:12px;display:flex;flex-direction:column;gap:10px}
.helpdesk-detail-head{display:flex;justify-content:space-between;gap:8px;align-items:flex-start}
.helpdesk-comments{border-top:1px solid #ecf1ff;padding-top:10px;display:flex;flex-direction:column;gap:8px;max-height:320px;overflow:auto}
.helpdesk-comment{border:1px solid #e7edff;border-radius:10px;padding:8px}
.helpdesk-comment-meta{font-size:12px;color:#5873a8;margin-bottom:4px}
.helpdesk-comment-form{display:grid;grid-template-columns:1fr auto;gap:8px}
.helpdesk-comment-form textarea{border:1px solid #d5def2;border-radius:10px;padding:10px;resize:vertical;min-height:70px}
.helpdesk-modal{position:fixed;inset:0;background:rgba(10,20,40,.35);display:flex;align-items:center;justify-content:center;z-index:60}
.helpdesk-modal.hidden{display:none}
.helpdesk-modal-card{width:min(560px,92vw);background:#fff;border-radius:16px;padding:16px;border:1px solid #d6e0f5;display:flex;flex-direction:column;gap:10px}
.helpdesk-modal-card label{display:flex;flex-direction:column;gap:6px;color:#39517f;font-size:13px}
.helpdesk-modal-card input,.helpdesk-modal-card select,.helpdesk-modal-card textarea{border:1px solid #d5def2;border-radius:10px;padding:10px}
.actions-row{display:flex;justify-content:flex-end;gap:8px}
.helpdesk-ticket-modal-card {
  width: min(640px, 92vw);
}
.helpdesk-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.helpdesk-modal-kicker {
  margin: 0 0 4px;
  color: #6b7fb3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.helpdesk-modal-head h3 {
  margin: 0;
  font-size: 22px;
  color: #263a70;
}
.helpdesk-modal-desc {
  margin: 0;
  color: #6b7fb3;
  font-size: 13px;
  line-height: 1.55;
}
.helpdesk-close-btn {
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
}
.helpdesk-step-error-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
  color: #31456f;
  font-size: 13px;
  line-height: 1.5;
}
.helpdesk-ticket-form {
  display: grid;
  gap: 12px;
}
.helpdesk-ticket-form label {
  display: grid;
  gap: 6px;
  color: #39517f;
  font-size: 13px;
  font-weight: 700;
}
.helpdesk-ticket-form input,
.helpdesk-ticket-form textarea {
  width: 100%;
  border: 1px solid #d5def2;
  border-radius: 12px;
  background: #fff;
  color: #22345a;
  font: inherit;
}
.helpdesk-ticket-form input {
  height: 44px;
  padding: 0 12px;
}
.helpdesk-ticket-form textarea {
  min-height: 180px;
  resize: vertical;
  padding: 12px;
  line-height: 1.6;
}
.helpdesk-ticket-form input:focus,
.helpdesk-ticket-form textarea:focus {
  outline: 2px solid rgba(47, 128, 237, 0.18);
  border-color: #7ca6f6;
}
.helpdesk-ticket-actions {
  margin-top: 2px;
}
.done-modal-card{width:clamp(320px,50vw,560px);align-items:center;text-align:center;padding:24px 20px}
.done-modal-icon{margin:0;font-size:52px;line-height:1}
.done-modal-icon i{color:#8fd8a4}
.done-modal-card #returnRequestDoneMessage{margin:0;font-size:20px;font-weight:700;color:#2d4375;text-align:center}
.done-modal-actions{width:100%;justify-content:center}
