@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*#1e2fa8*/
:root {
  --main-color: #1E41A8;
  --main-color-hover: #16327F;

--rc-border: #E9EBEF;
  --rc-radius: 16px;
  --rc-bg: #FFFFFF;
  --rc-icon-bg: #EFF6FF;
  --rc-icon-color: #155DFC;
  --rc-title-color: #111827;
  --rc-desc-color: #8A8F98;
  --rc-btn-border: #E3E5E9;
  --rc-btn-hover-bg: #F5F6F8;
  --rc-gap: 14px;
  --rc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;


  --brand: #1e41a8;
    --background: #fafcfe;
    --text-secondary: #474d58;
    --ink: #080d16;
    --input: #d7dbe0;
    --divider: #eceef1;
    --success: #23a136;
    --amber: #f2a618;
    --red: #e0463c;
    --purple: #6a5bd0;
    --muted-bg:#FAFCFE;
}
body, html { height: 100%; margin: 0; font-family: "Inter", sans-serif; }
.fw-semibold {
  font-weight: 500 !important;
}
.btn_gray{ border: 1px solid #D7DBE0 !important; background: #fff !important; color:#080D16; border-radius:16px; padding:10px 20px;  }

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


  .split-container { min-height: 100vh; }

  /* LEFT PANEL */
  .left-panel {
    background: url(../images/bg.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; height: 100vh;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.6rem;
  }

  .badge-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #cfd6ff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content; color: #fff;
  }
  .badge-pill i{ color:#7DD3FC; }

  .headline {
    font-size: 39px;
    font-weight: 800;
    line-height: 1.2;
    margin: 1.5rem 0 1rem;
  }

  .headline .highlight {
    background: linear-gradient(90deg, #7DD3FC, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .sub-text {
    color: #FFF9;
    max-width: 480px;
    font-size: 15px;
  }

  .stats-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    min-width: 130px;
  }

  .stat-card.board {
  border: 1px solid #D7DBE0;
  position: relative;
  box-shadow: 0px 4px 20px 0px #0000000F; background: #fff;
}

.stat-card.board .stat-icon {
  border-radius: 50px;
}

  .stat-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
  }

  .stat-card p {
    margin: 0;
    color: #a9b2d8;
    font-size: 0.8rem;
  }

  .stat-card.board p.stat-value {
  font-size: 24px;
  color: #080D16; position: relative;
}
.stat-card.board p.stat-label {
  color: #474D58;
}

.stat-card.board span {
  position: absolute;
  top: 26px;
  right: 15px; font-weight: 500;
}

  .chart-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.15;
    z-index: 0;
  }

  .left-panel > * { position: relative; z-index: 1; }

  /* RIGHT PANEL */
  .right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 2rem;
  }

  .auth-box { max-width: 420px; width: 100%; }
  .auth-box .small.text-decoration-none {
	color: var(--main-color);
	font-weight: 600; font-size: 12px;
}

  .auth-box .eyebrow {
    color: var(--main-color);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-transform: uppercase;
  }

  .auth-box h2 {
    font-weight: 700;
    margin: 0.4rem 0 0.5rem; font-size: 28px;
  }

  .auth-box .desc { color: #6b7280; margin-bottom: 2rem; font-size:14px; }

  .btn-signin {
    background: var(--main-color);
    color: #fff;
    border-radius: 16px;
    padding: 0.9rem;
    font-weight: 600;
    width: 100%;
    border: none; box-shadow: 0px 10px 30px -10px #1E40AF8C;

  }
  .btn-signin:hover { background: var(--main-color-hover) ; color:#fff; }

  .btn-signup {
    background: #fff;
    color: #111;
    border: 1px solid #d9dce3;
    border-radius: 16px;
    padding: 0.9rem;
    font-weight: 600;
    width: 100%;
  }
  .btn-signup:hover { background: #f7f7f9; }

  .help-text { text-align: center; margin-top: 1.5rem; color: #6b7280; font-size: 0.9rem; }
  .help-text a { color: var(--main-color); font-weight: 600; text-decoration: none; }

  .form-label { font-size: 0.9rem; margin-bottom: 6px; }

.input-group-text {
  border-color: #d9dce3;
  color: #6b7280;
}

.form-control {
  border-color: #d9dce3;
  padding: 0.7rem 0.8rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--main-color);
}

/*.btn-signin {
  background: var(--main-color);
  color: #fff;
  border-radius: 30px;
  padding: 0.9rem;
  font-weight: 600;
  width: 100%;
  border: none;
}
.btn-signin:hover { background: #172589; color:#fff; }*/

.form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.auth-box .form-control {
	padding-left: 0;
}

 /* SIDEBAR */
  .sidebar {
    background: #0c1230;
    color: #cfd3e6;
    width: 260px;
    height: 100vh;
    min-height: 100vh;
    overflow-y: auto;
    padding: 1.5rem 1.2rem 2.5rem 1.2rem;
    position: fixed;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sidebar::-webkit-scrollbar {
    display: none;
  }

  .logo-wrap { display:flex; align-items:center; gap:8px; color:#fff; font-weight:800; font-size:1.3rem; margin-bottom:1.25rem; }

  .sidebar-kairova-logo {
    display: block;
    height: 79px;
    object-fit: contain;
    width: 79px;
  }

  .nav-section-title { font-size: 0.7rem; letter-spacing: 1px; color: #6d7290; margin: 0 0 0.6rem; }


.sidebar_nav {
  height: auto;
  overflow: visible;
  flex: 0 0 auto;
}


  .nav-link-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    color: #b7bcd6;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .nav-link-custom:hover { background: rgba(255,255,255,0.05); color: #fff; }
  .nav-link-custom.active {  color: #fff; font-weight:600; box-shadow: 46px 0px 78px 1px #FFFFFF2B inset;
 background: #FFFFFF01;
 }
  .nav-link-custom.active i{ color:#3F82F0 }
  .nav-link-custom .icon-label { display:flex; align-items:center; gap:10px; }

  .badge-count {
    background: rgba(255,255,255,0.1);
    color: #cfd3e6;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
  }

  .nav-link-custom.active .badge-count { background: rgba(255,255,255,0.2); color: #fff; }

  .onboarding-box {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
  }

  .pro-badge {
    background: var(--main-color);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    margin-right: 6px;
  }

  .progress-thin { height: 5px; border-radius: 10px; background: rgba(255,255,255,0.1); }
  .progress-thin .progress-bar { background: #4d6bff; }

  /* MAIN CONTENT */
  .main-content { margin-left: 260px; padding: 0rem 2rem 1.5rem 2rem; background:#fafcfe; height:100%; }

  .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 32px;
  border-bottom: 1px solid #D7DBE0;
  background: #fff;
  margin: 0 -32px 1.5rem;
}

.topbar h3 {
  margin-top: 10px;
}


  .breadcrumb-custom { font-size: 0.85rem; color: #8b90a5; margin-bottom: 4px; }
  .breadcrumb-custom strong { color: #1f2430; }

  .search-box {
    background: #FAFCFE;
    border: 1px solid #e4e6ee;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 320px;
    color: #9096ac;
    font-size: 0.85rem;
  }
.search-box input {
  border: none;
  width: 90%; background: transparent;
}
  .kbd-hint {
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  margin-left: auto;
  border: 1px solid #D7DBE0;
  width: 44px;
  height: 30px;
  background: #fff;
}

  .topbar-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    background: #fff;
    border: 1px solid #e4e6ee;
    position: relative;
    color: #555;
  }

  .notif-dot {
    width: 8px; height: 8px;
    background: #e0475a;
    border-radius: 50%;
    position: absolute;
    top: 8px; right: 9px;
  }

  .user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e4e6ee;
    border-radius: 10px;
    padding: 0.4rem 0.8rem;
  }

  .avatar-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex; align-items:center; justify-content:center;
  }

  /* HERO CARD */
  .hero-card {
    background: linear-gradient(160deg, #0c1230 0%, #14297a 100%);
    border-radius: 16px;
    padding: 1.6rem;
    color: #fff;
  }

  .live-pill {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .live-dot { width:6px; height:6px; background:#3ee08c; border-radius:50%; }

  .open-report-btn {
  background: rgba(255, 255, 255, 0);
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 0.8rem;
  height: 36px;
  border-radius: 16px;
  box-shadow: 46px 0px 78px 1px #FFFFFF2B inset;
  font-weight: 500;
}

  .hero-value { font-size: 2.8rem; font-weight: 800; }
  .growth-badge { background: rgba(62,224,140,0.15); color: #6be3a4; padding: 3px 10px; border-radius: 20px; font-size: 0.8rem; }

  /* GENERIC CARD */
  .card-panel {
    background: #fff;
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid #edeef3;
  }

  .quick-action-btn {
    background: #fff;
    border: 1px solid #edeef3;
    border-radius: 16px;
    padding: 0.7rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2430;
    width: 100%;
    text-align: left;
  }

  .quick-action-btn i {
  color: var(--main-color);
  background: #1E41A81A;
  padding: 8px;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  /*.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem;
    border: 1px solid #edeef3;
  }*/

  .stat-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display:flex; align-items:center; justify-content:center;
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }

  .stat-value { font-size: 1.6rem; font-weight: 800; margin: 0; }
  .stat-label { color: #8b90a5; font-size: 0.8rem; margin: 0; }

  .trend-up { color: #1e9e5f; font-size: 0.75rem; }
  .trend-down { color: #d84545; font-size: 0.75rem; }

  .activity-item {
    display: flex;
    gap: 12px;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f1f2f7;
  }
  .activity-item:last-child { border-bottom: none; }

  .activity-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    display:flex; align-items:center; justify-content:center;
    flex-shrink: 0;
  }

  .range-btn {
    border: none;
    background: transparent;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #6b7280;
  }
  .range-btn.active { background: var(--main-color); color: #fff; }


  .info-banner {
  background: #ECF1F566;
  border: 1px solid #D7DBE0;
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #474D58;
  font-size: 12px;
}

.otp-container {
  display: flex;
  gap: 10px; justify-content: space-between; width: 100%;
}

.otp-box {
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  border: 1px solid #e4e6ee;
  border-radius: 10px;
  color: #1f2430;
  outline: none;
  transition: border-color 0.2s;
}

.otp-box:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(30,47,168,0.1);
}

.otp-box::placeholder {
  color: #c7cad4;
}

.strength-container {
  max-width: 420px;
}

.strength-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.strength-label {
  color: #374151;
  font-weight: 500;
}

.strength-value {
  font-weight: 600;
}

.strength-value.strong { color: #1e9e5f; }
.strength-value.medium { color: #c98a2c; }
.strength-value.weak { color: #d84545; }

.strength-bars {
  display: flex;
  gap: 6px;
}

.bar {
  height: 5px;
  flex: 1;
  background: #e4e6ee;
  border-radius: 10px;
}

.bar.filled {
  background: #1e9e5f;
}

.auth-card {
  background: #f7f8fb;
  border: 1px solid #e4e6ee;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px; margin-bottom: 20px;
}

.auth-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e6e9fb;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.auth-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2430;
}

.auth-subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: #8b90a5;
}

.success-card {
  text-align: center;
  padding: 1.5rem 1rem;
  max-width: 100%;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e7f7ef;
  color: #1e9e5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.success-title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 1rem;
  color: #1f2430;
}

.success-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: #8b90a5;
}

.wizard-container { min-height: 100vh; }

  /* LEFT PANEL */
  .wizard-sidebar {
    background: linear-gradient(160deg, #0b1a4a 0%, #14297a 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(105.41% 43.94% at 100% 100%, rgba(124, 58, 237, 0.25) 0%, rgba(124, 58, 237, 0) 60%),
radial-gradient(131.76% 32.95% at 10% 0%, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0) 60%),
linear-gradient(180deg, rgba(11, 31, 58, 0.55) 0%, rgba(11, 31, 58, 0.35) 45%, rgba(11, 31, 58, 0.9) 100%);
background-image: url(../images/left-side.jpg);
background-size: cover;
  }

  .logo-wrap { display:flex; align-items:center; gap:8px; font-weight:700; font-size:1.4rem; margin-bottom:2rem; }

  .setup-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #cfd6ff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .setup-pill i{ color:#7DD3FC; }

  .wizard-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 1rem 0 0.7rem;
    line-height: 1.3;
  }

  .wizard-sub { color: #b9c2e6; font-size: 0.85rem; }

  .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #9aa3d6;
    margin: 30px 0 10px;
  }
  .progress-label span{ font-weight:500; }
  .progress-label span:last-child { color: #fff; }

  .progress-thin {
    height: 5px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1); margin-bottom: 31px;
  }
  .progress-thin .progress-bar { background: #4d6bff; }
  .step-list { margin-top: 1.5rem; position: relative; z-index:1; }
  .step-item { display: flex; gap: 12px; padding: 0.7rem 0.6rem; border-radius: 10px; align-items: center; margin-bottom: 10px; color: inherit; text-decoration: none; cursor: pointer; transition: background-color 0.2s ease, border-color 0.2s ease; }
  .step-item:last-child{ margin-bottom:0; }
  .step-item:hover { background: #FFFFFF0A; color: inherit; text-decoration: none; }
  .step-item:focus-visible { outline: 2px solid rgba(255,255,255,0.75); outline-offset: 2px; }
  .step-item.active { border: 1px solid #FFFFFF1A; background: #FFFFFF0F; }

  .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #cfd3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .step-item.active .step-num { background: #fff; color: #14297a; }

  .step-item.compleate .step-num {
  background: #23A136;
  color: #fff;
}

  .step-title { font-weight: 600; font-size: 0.85rem; margin: 0; color: #fff; }
  .step-sub { font-size: 0.75rem; color: #9aa3d6; margin: 0; }
  .step-item:not(.active) .step-title { color: #b7bcd6; }

  .soc-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.9rem;
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #b9c2e6;
    position: relative;
    z-index: 1;
  }

  .soc-title { font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px; margin-bottom: 4px; font-size: 0.8rem; }
  .soc-title i{ color:#7DD3FC; }
  .chart-bg-onboard {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 250px;
    opacity: 0.15;
    z-index: 0;
  }

  /* RIGHT PANEL */
  .wizard-main { display: flex; flex-direction: column; min-height: 100vh; }

  .wizard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border-bottom: 1px solid #eceef3;
    font-size: 0.85rem;
    color: #6b7280;
  }

  .autosave-text { color: #1e9e5f; display: flex; align-items: center; gap: 4px; }
  .save-exit-link { color: var(--main-color); font-weight: 600; text-decoration: none; margin-left: 1.5rem; }

  .wizard-body { flex: 1; padding: 2rem 2.5rem; }
  .wizard-body .text-muted.mb-4 { font-size: 14px; }

  .eyebrow-label { color: var(--main-color); font-weight: 700; font-size: 0.75rem; letter-spacing: 1px; }

  .form-label { font-weight: 600; font-size: 0.85rem; color: #1f2430; }

  .form-control-custom {
    border: 1px solid #e4e6ee;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
  }
  .form-control-custom:focus { border-color: var(--main-color); box-shadow: none; }

  .wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border-top: 1px solid #eceef3;
    background: #ECF1F566;
  }
  .wizard-footer .btn.btn-signup {
  width: auto;
  height: auto;
  padding: 0.7rem 1.4rem;
}
.wizard-footer .btn.btn-signup:hover{ border:1px solid #d9dce3; }
  .help-link { color: var(--main-color); text-decoration: none; font-weight: 600; }
    .btn-continue {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 0.7rem 1.4rem;
    font-weight: 600; box-shadow: 0px 10px 24px -12px #1E40AF99;
  }
  .btn-continue:hover { background: var(--main-color-hover); color: #fff; }

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.doc-item {
  background: #fff;
  border: 1px solid #e4e6ee;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 14px; background: #fafcfe;
}

.doc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eceefb;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.doc-info { flex: 1; }

.doc-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2430;
}

.doc-sub {
  margin: 0;
  font-size: 0.8rem;
  color: #8b90a5;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  white-space: nowrap;
}

.status-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-badge.verified { background: #e7f7ef; color: #1e9e5f; }
.status-badge.verified .dot { background: #1e9e5f; }

.status-badge.reviewing { background: #eceefb; color: var(--main-color); }
.status-badge.reviewing .dot { background: var(--main-color); }

.status-badge.required { background: #fdf1e3; color: #c98a2c; }
.status-badge.required .dot { background: #c98a2c; }

.upload-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e4e6ee;
  background: #fff;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.upload-btn:hover { background: #f7f8fb; }


.profile-card {
  background: #fff;
  border: 1px solid #e4e6ee;
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 100%; margin-bottom: 20px;
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.profile-info { flex: 1; }

.profile-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2430;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-icon {
  color: #1e9e5f;
  font-size: 0.85rem;
}

.profile-sub {
  margin: 0;
  font-size: 0.8rem;
  color: #8b90a5;
}

.change-link {
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}


.notif-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.notif-item {
  background: #fff;
  border: 1px solid #e4e6ee;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.notif-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eceefb;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.notif-info { flex: 1; }

.notif-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2430;
}

.notif-sub {
  margin: 0;
  font-size: 0.8rem;
  color: #8b90a5;
}

/* TOGGLE SWITCH */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input { display: none; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #d9dce3;
  border-radius: 30px;
  transition: 0.2s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--main-color);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}
.complete-card {
  background: linear-gradient(135deg, rgba(236, 241, 245, 0.35) 0%, #fff 100%);
  border: 1px solid #d9dee6;
  border-radius: 18px;
  padding: 1rem 1rem 0.95rem;
  max-width: 860px;
  width: 100%;
  box-shadow: none;
}

.complete-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0.8rem;
}

.complete-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e7f7ef;
  color: #1e9e5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.complete-title {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #1f2430;
}

.complete-sub {
  margin: 0;
  font-size: 0.78rem;
  color: #8b90a5;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 0.8rem;
  padding-top: 0.3rem;
  border-top: 0;
}

.complete-card .action-item {
  min-height: 56px;
  padding: 0.55rem 0.7rem;
  border: 1px solid #d9dee6;
  border-radius: 13px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
}

.action-title {
  margin: 0 0 1px;
  font-weight: 700;
  font-size: 0.94rem;
  color: #1f2430;
}

.action-sub {
  margin: 0;
  font-size: 0.78rem;
  color: #8b90a5;
}



.company-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.company-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e4e6ee;
  border-radius: 10px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.company-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--main-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-info { line-height: 1.2; }

.company-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1f2430;
}

.company-sub {
  margin: 0;
  font-size: 0.7rem;
  color: #8b90a5;
}

.chevron-icon {
  font-size: 0.7rem;
  color: #8b90a5;
  margin-left: 4px;
  transition: transform 0.2s;
}

.chevron-icon.open { transform: rotate(180deg); }

/* DROPDOWN MENU */
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e4e6ee;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 200px;
  padding: 0.5rem;
  z-index: 100;
}

.dropdown-menu-custom.show { display: block; }

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  color: #1f2430;
  text-decoration: none;
  font-size: 0.85rem;
}

.dropdown-item-custom:hover { background: #f7f8fb; }

.dropdown-item-custom i { color: #6b7280; font-size: 0.95rem; }

.dropdown-item-custom.logout { color: #d84545; }
.dropdown-item-custom.logout i { color: #d84545; }

.dropdown-divider-custom {
  height: 1px;
  background: #eceef3;
  margin: 0.4rem 0;
}

@media (max-width: 600px) {
  .action-row { grid-template-columns: 1fr; }
}

  @media (max-width: 767px) {
    .headline { font-size: 2rem; }
    .left-panel { padding: 2rem 1.5rem; }
  }




  .report-wrap { padding: 1rem 0rem; }
  .report-wrap .fw-bold {
  font-size: 12px;
}

  .breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #474D58;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 15px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 1px solid #D7DBE0;
}
  .breadcrumb-pill .dot { width: 6px; height: 6px; background: var(--main-color); border-radius: 50%; }

  .top-actions .btn-outline-custom, .card-panel .btn-outline-custom {
    border: 1px solid #e4e6ee; background: #fff; border-radius: 10px;
    padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 600; color: #1f2430;
  }
  .card-panel .d-flex.justify-content-between.align-items-start.mb-3 {
  padding: 0 20px;
}
  .card-panel { background: #fff; border: 1px solid #edeef3; border-radius: 14px; padding: 1.1rem 1.3rem; }
  .card-panel.table_wrapper { background: #fff; border: 1px solid #edeef3; border-radius: 14px; padding: 1.1rem 0 0 0; overflow:hidden; }
  .card-panel thead tr th {
  background: #FAFCFE;
}

.card-panel .table.table-report th:first-child {
  padding-left: 20px;
}
.card-panel .table.table-report th:last-child {
  padding-right: 20px;
}
.card-panel .table.table-report tbody tr td:first-child{ padding-left:20px; }
.card-panel .table.table-report tbody tr td:last-child{ padding-right:20px; }
.card-panel .table.table-report tbody tr:last-child td { border: none; }
  .stat-card-report {
    background: #fff; border: 1px solid #edeef3; border-radius: 14px; padding: 1rem 1.2rem;
  }
.stat-card-report .label {
  font-size: 10px;
  letter-spacing: 1px;
  color: #474D58;
  font-weight: 500;
}
  .stat-card-report .value { font-size: 1.5rem; font-weight: 800; margin: 4px 0 8px; }
  .trend-pill { font-size: 0.75rem; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
  .trend-pill.up { background: #e7f7ef; color: #1e9e5f; }
  .trend-pill.down { background: #fdeceb; color: #d84545; }

  .range-btn { border:none; background:#f1f2f7; padding:5px 12px; border-radius:8px; font-size:0.78rem; color:#6b7280; margin-left:4px; }
  .range-btn.active { background:var(--main-color); color:#fff; }

  .mix-bar-bg { height: 6px; border-radius: 10px; background: #eceef3; }
  .mix-bar-fill { height: 6px; border-radius: 10px; }

  .table-report thead th {
    font-size: 0.7rem; letter-spacing: 1px; color: #8b90a5; font-weight: 700;
    border-bottom: 1px solid #D4D8DD; padding-bottom: 10px; border-top: 1px solid #D4D8DD;
  }
  .table-report td { padding: 0.9rem 0.5rem; border-bottom: 1px solid #D4D8DD; vertical-align: middle; }

  .product-avatar {
    width: 34px; height: 34px; border-radius: 50%; background: var(--main-color); color: #fff;
    font-size: 0.7rem; font-weight: 700; display:flex; align-items:center; justify-content:center;
  }

  .status-pill { font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display:inline-flex; align-items:center; gap:5px; }
  .status-pill .dot { width:6px; height:6px; border-radius:50%; }
  .status-pill.live { background:#e7f7ef; color:#1e9e5f; }
  .status-pill.live .dot { background:#1e9e5f; }
  .status-pill.matured { background:#f1f2f7; color:#6b7280; }
  .status-pill.matured .dot { background:#6b7280; }
  .status-pill.review { background:#e6f4fb; color:#2a8fc9; }
  .status-pill.review .dot { background:#2a8fc9; }
  .status-pill.pending { background:#fdf1e3; color:#c98a2c; }
  .status-pill.pending .dot { background:#c98a2c; }




.product-card {
  background: #fff;
  border: 1px solid #D7DBE0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0px 6px 18px -12px #0F172A14;
}

.product-card-clickable {
  cursor: pointer;
}

.product-card-clickable:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 3px;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid #eceef3;
}

.badge-new {
  background: #f1f2f7;
  color: #6b7280;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; }
.status-pill.active { background: #e7f7ef; color: #1e9e5f; }
.status-pill.active .dot { background: #1e9e5f; }
.status-pill.live { background: #e7f7ef; color: #1e9e5f; }
.status-pill.live .dot { background: #1e9e5f; }

.product-card-body { padding: 1.3rem; }

.label-small {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: #9096ac;
  text-transform: uppercase;
  font-weight: 600;
}

.info-box {
  background: #FAFCFE;
  border-radius: 16px;
  padding: 0.5rem 0.9rem;
}

.info-box .fw-semibold.mb-0 {
  color: #080D16;
  font-size: 12px;
  font-weight: 700 !important;
}

.file-chip {
  background: #f7f8fb;
  border: 1px solid #e4e6ee;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.8rem;
  color: #1f2430;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.capacity-bar {
  height: 6px;
  background: #eceef3;
  border-radius: 10px;
}

.capacity-fill {
  height: 6px;
  background: var(--main-color);
  border-radius: 10px;
}

.btn-manage {
  border: 1px solid #e4e6ee;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1f2430;
}
.btn-manage:hover { background: #f7f8fb; }


.card-panel { background: #fff; border: 1px solid #edeef3; border-radius: 16px; padding: 1.4rem; margin-bottom: 1rem; }

  .badge-code { background: #f1f2f7; color: #1f2430; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 8px; }
  .badge-live { background: #e7f7ef; color: #1e9e5f; font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; }
  .badge-live .dot { width: 6px; height: 6px; background: #1e9e5f; border-radius: 50%; }

  .range-btn { border:none; background:#f1f2f7; padding:5px 12px; border-radius:8px; font-size:0.78rem; color:#6b7280; margin-left:4px; }
  .range-btn.active { background:var(--main-color); color:#fff; }

  .legend-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }

  .term-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 2px dashed #f3f4f8; font-size: 0.88rem; }
  .term-row:last-child { border-bottom: none; }
  .term-label { color: #6b7280; }
  .term-value { font-weight: 600; }

  .doc-item {
    display: flex; align-items: center; gap: 12px;
    border: 1px solid #edeef3; border-radius: 12px;
    padding: 0.7rem 0.9rem; margin-bottom: 10px;
  }
  .doc-icon { width: 34px; height: 34px; border-radius: 8px; background: #eceefb; color: var(--main-color); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .doc-title { margin:0; font-weight: 600; font-size: 0.88rem; }
  .doc-sub { margin:0; font-size: 0.78rem; color: #8b90a5; }
  .download-btn { margin-left: auto; width: 34px; height: 34px; border-radius: 8px; border: 1px solid #e4e6ee; display: flex; align-items: center; justify-content: center; color: #6b7280; background:#fff; flex-shrink:0; }
  .doc-item .download-btn { background: transparent; border: none; }
  .table-investors thead th {
    font-size: 0.7rem; letter-spacing: 1px; color: #8b90a5; font-weight: 700;
    border-bottom: 1px solid #edeef3; padding-bottom: 10px;
  }
  .table-investors td { padding: 0.8rem 0.5rem; border-bottom: 1px solid #f3f4f8; vertical-align: middle; }

  .investor-avatar { width: 32px; height: 32px; border-radius: 50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:0.7rem; font-weight:700; }

  .status-pill-sm { font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display:inline-flex; align-items:center; gap:5px; }
  .status-pill-sm .dot { width:6px; height:6px; border-radius:50%; }
  .status-pill-sm.success { background:#e7f7ef; color:#1e9e5f; }
  .status-pill-sm.success .dot { background:#1e9e5f; }
  .status-pill-sm.confirming { background:#f2ecfb; color:#7c4fd6; }
  .status-pill-sm.confirming .dot { background:#7c4fd6; }

  .product_detail .upload-btn { width: auto; border: 1px solid #e4e6ee; background: #fff; border-radius: 10px; padding: 0.5rem 1rem; font-weight: 600; font-size: 0.85rem; }


  /* .inner_ab { padding: 24px; background: #fff; border-radius: 16px; border: 1px solid #edeef3; } */

  .publish-success-card {
  background: #fff;
  border: 1px solid #e4e6ee;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 100%;
}

.check-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eceef3;
  color: #1f2430;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e7f7ef;
  color: #1e9e5f;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.live-badge .dot {
  width: 6px;
  height: 6px;
  background: #1e9e5f;
  border-radius: 50%;
}

.publish-title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2430;
}

.publish-sub {
  margin: 0;
  font-size: 0.85rem;
  color: #8b90a5;
}





 /* TOP HEADER */
  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #eceef3;
  }

  .back-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid #e4e6ee;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    color: #1f2430;
  }

  .breadcrumb-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #8b90a5;
    font-weight: 600;
    margin-bottom: 2px; text-transform: uppercase;
  }

  .page-title { font-weight: 800; font-size: 1.2rem; margin: 0; }

  .autosave-text { color: #8b90a5; font-size: 0.85rem; margin-right: 1rem; }

  .btn-outline-header {
    border: 1px solid #e4e6ee;
    background: #fff;
    border-radius: 8px;
    padding: 0.5rem 1.1rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1f2430;
    margin-right: 8px;
  }

  .btn-continue-header {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.3rem;
    font-weight: 600;
    font-size: 0.85rem;
  }
  .btn-continue-header:hover { background: #172589; color: #fff; }

  /* TABS */
  .step-tabs {
    display: flex;
    gap: 1.8rem;
    padding: 0 2rem;
    border-bottom: 1px solid #eceef3;
  }

  .step-tab {
    padding: 0.9rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: #8b90a5;
    border-bottom: 2px solid transparent;
    cursor: pointer;
  }

  .step-tab.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
  }

  /* MAIN LAYOUT */
  .form-body { background: #f6f7f9; padding: 2rem; min-height: 100vh; }

  .sections-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #8b90a5;
    font-weight: 700;
    margin-bottom: 0.7rem;
  }

  .section-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #edeef3;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 10px;
  }

  .section-item.active {
    background: #eef0fb;
    border-color: #c7cdf5;
  }

  .section-item.complete {
    background: #f3fbf5;
    border-color: #b8e3c0;
  }

  .section-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #eceef3;
    color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
    flex-shrink: 0;
  }

  .section-item.active .section-num { background: var(--main-color); color: #fff; }
  .section-item.complete .section-num { background: #23a136; color: #fff; }

  .section-title { margin: 0; font-weight: 700; font-size: 0.9rem; color: #1f2430; }
  .section-sub { margin: 0; font-size: 0.78rem; color: #8b90a5; }

  /* FORM PANEL */
  .form-panel {
    background: #fff;
    border: 1px solid #edeef3;
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0px 6px 18px -12px #0F172A14;
  /*box-shadow: 0px 1px 2px 0px #0F172A0A;*/
  }

  .form-label-custom {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1f2430;
  }
  .required-mark { color: #d84545; }

  .form-control-custom {
    border: 1px solid #e4e6ee;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
  }
  .form-control-custom:focus { border-color: var(--main-color); box-shadow: none; }

  .checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px; margin: 22px 0;
}

.agreement-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.agreement-checkbox input {
  display: none;
}

.check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid #c7cad4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.agreement-checkbox input:checked + .check-box {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.agreement-checkbox input:checked + .check-box::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.check-label {
  font-size: 0.88rem;
  color: #1f2430;
}

.required-mark {
  color: #d84545;
}

.preview-banner {
  background: linear-gradient(90deg, #0b1a4a 0%, #14297a 100%);
  border-radius: 16px;
  padding: 30px 2rem;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #cfd6ff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.banner-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.banner-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}

.ticker-badge {
  background: rgba(255,255,255,0.12);
  color: #cfd6ff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

.banner-sub {
  margin: 0;
  color: #9aa3d6;
  font-size: 0.85rem;
}

.banner-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-block { text-align: left; }

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: #9aa3d6;
  margin: 0 0 4px;
}

.stat-value {
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
}

.stat-value.highlight { color: #6ea8ff; }

.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; padding: 0;
  margin-top: 25px;
}

.detail-card {
  background: #fff;
 
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: 0px 1px 2px 0px #0F172A0A;
}

.detail-card--full {
  grid-column: 1 / -1;
}

.card-heading {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2430;
  margin-bottom: 14px;
}

.preview-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-box {
  background: #FAFCFE;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border: 1px solid #D7DBE0;
}

.field-box-full {
  background: #FAFCFE;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border: 1px solid #D7DBE0;
}

.field-label { color: #8b90a5; }
.field-value {
  font-weight: 700;
  color: #1f2430;
  text-align: right;
  overflow-wrap: anywhere;
}

.all-attached {
  color: #1e9e5f;
  font-size: 0.8rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.doc-row {
  gap: 12px;

  background: #FAFCFE;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border: 1px solid #D7DBE0;
}

.doc-row-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #eceefb;
  color: #3b4fd6;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.doc-row-title { margin: 0; font-weight: 600; font-size: 0.88rem; color: #1f2430; }
.doc-row-sub { margin: 0; font-size: 0.75rem; color: #8b90a5; }

.doc-check { color: #1e9e5f; font-size: 1.1rem; }

.success-alert-banner {
  background: #eaf7ee;
  border: 1px solid #cdeed7;
  border-radius: 12px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 14px; margin-top: 30px;
}

.success-alert-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cdeed7;
  color: #1e9e5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.alert-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2430;
}

.alert-sub {
  margin: 0;
  font-size: 0.82rem;
  color: #5c6270;
}

 .report-wrap.ins_wrap { background: #fff; max-width: 100%; margin: 0 auto; padding: 1.5rem; border: 1px solid #edeef3; border-radius: 16px; }
/* FILTER TABS */
  .filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.2rem; }

  .filter-tab {
    border: 1px solid #e4e6ee;
    background: #fff;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2430;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .filter-tab.active {
    border-color: var(--main-color);
    color: var(--main-color);
    background: #eef0fb;
  }

  .tab-count {
    background: #f1f2f7;
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
  }

  .filter-tab.active .tab-count { background: var(--main-color); color: #fff; }

  /* ROW */
  .investor-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0.5rem;
    border-bottom: 1px solid #f1f2f7;
  }
  .investor-row:last-child { border-bottom: none; }

  .investor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .investor-block { width: 190px; flex-shrink: 0; }
  .investor-name { margin: 0; font-weight: 700; font-size: 0.95rem; }
  .investor-kyc { margin: 0; font-size: 0.78rem; color: #1e9e5f; display: flex; align-items: center; gap: 4px; }
  .investor-id { margin: 0; font-size: 0.78rem; color: #8b90a5; }

  .middle-block { flex: 1; }
  .middle-block.half_width {
  width: 500px;
  flex-shrink: 0;
  flex-basis: 500px;
  flex: initial;
}

  .ticker-code { color: #2a3fd6; font-weight: 700; font-size: 0.85rem; }
  .product-name { font-weight: 700; font-size: 0.95rem; margin-left: 6px; }

  .pending-badge { background: #fdf1e3; color: #c98a2c; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; margin-left: 8px; }
  .pending-badge .dot { width: 6px; height: 6px; background: #c98a2c; border-radius: 50%; }

    .active-badge { background: #23A1361F; color: #23A136; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; margin-left: 8px; }
  .active-badge .dot { width: 6px; height: 6px; background: #23A136; border-radius: 50%; }




  .amount-text { font-size: 1.3rem; font-weight: 800; margin: 4px 0; }
  .tenure-text { font-size: 0.85rem; color: #8b90a5; }

  .progress-row { display: flex; align-items: center; gap: 10px; margin: 8px 0; }
  .progress-bar-bg { flex: 1; height: 6px; border-radius: 10px; background: #eceef3; }
  .progress-bar-fill { height: 6px; border-radius: 10px; background: var(--main-color); }
  .progress-pct { font-size: 0.8rem; font-weight: 700; color: #1f2430; min-width: 34px; }

  .meta-row { display: flex; gap: 1.2rem; font-size: 0.8rem; color: #8b90a5; }
  .meta-row i { margin-right: 4px; }

  .action-block { display: flex; gap: 1.3rem; flex-shrink: 0; }
  .action-item {
    display: flex;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }
  .action-item.confirm { color: #2a3fd6; }
  .action-item.review { color: #1f2430; }
  .action-item.dispute { color: #d84545; }




  .card-panel { background: #fff; border: 1px solid #edeef3; border-radius: 16px; padding: 1.4rem; margin-bottom: 1rem; }

  .avatar-lg { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
  .avatar-initials {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--main-color); color: #fff; font-weight: 700; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
  }

  .verified-pill {
    font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .verified-pill.kyc { background: #e7f7ef; color: #1e9e5f; }
  .verified-pill.finance { background: #eceefb; color: #3b4fd6; }
  .verified-pill .dot { width: 6px; height: 6px; border-radius: 50%; }
  .verified-pill.kyc .dot { background: #1e9e5f; }
  .verified-pill.finance .dot { background: #3b4fd6; }

  .btn-outline-header { border: 1px solid #e4e6ee; background: #fff; border-radius: 10px; padding: 0.5rem 1rem; font-weight: 600; font-size: 0.85rem; color: #1f2430; }

  .label-small { font-size: 0.68rem; letter-spacing: 1px; color: #9096ac; font-weight: 700; text-transform: uppercase; }

  .contact-row { display: flex; gap: 20px; font-size: 0.85rem; color: #6b7280; margin-top: 6px; flex-wrap: wrap; }
  .contact-row i { margin-right: 4px; }

  .status-badge-sm { font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; }
  .status-badge-sm .dot { width: 6px; height: 6px; border-radius: 50%; }
  .status-badge-sm.received { background: #e7f7ef; color: #1e9e5f; }
  .status-badge-sm.received .dot { background: #1e9e5f; }
  .status-badge-sm.verified { background: #eceefb; color: #3b4fd6; }
  .status-badge-sm.verified .dot { background: #3b4fd6; }

  .avatar-sm-initials {
    width: 38px; height: 38px; border-radius: 50%;
    background: #6b7280; color: #fff; font-weight: 700; font-size: 0.75rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  /* TABLE */
  .table-receipts thead th { font-size: 0.68rem; letter-spacing: 1px; color: #9096ac; font-weight: 700; border-bottom: 1px solid #edeef3; padding-bottom: 8px; }
  .table-receipts td { padding: 0.9rem 0.5rem; border-bottom: 1px solid #f3f4f8; vertical-align: middle; }

  .product-avatar-sm {
    width: 32px; height: 32px; border-radius: 12px; background: #eceefb; color: #3b4fd6;
    font-weight: 700; font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
  }

  .sent-badge { background: #e7f7ef; color: #1e9e5f; font-size: 0.72rem; font-weight: 600; padding: 2px 9px; border-radius: 20px; display: inline-flex; align-items: center; gap: 4px; }

  .doc-chip {
  padding: 3px 10px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #080D16;
  margin: 2px;
  border: 1px solid #D7DBE0;
  border-radius: 16px;
  background: #FAFCFE;
}

  .doc-chip i{ color:var(--main-color); }

  .icon-btn-sm { width: 34px; height: 34px; border-radius: 8px; border: 1px solid #e4e6ee; background: #fff; display: flex; align-items: center; justify-content: center; color: #6b7280; }

  .btn-view { background: var(--main-color); color: #fff; border: none; border-radius: 8px; padding: 6px 16px; font-weight: 600; font-size: 0.8rem; }

  /* HOLDINGS */
  .holding-card {
    background: #FAFCFE; border: 1px solid #D7DBE0; border-radius: 14px;
    padding: 1rem 1.2rem; display: flex; align-items: center; gap: 16px; margin-bottom: 10px;
  }

  .status-chip { font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; }
  .status-chip.success { background: #e7f7ef; color: #1e9e5f; }
  .status-chip.confirming { background: #f2ecfb; color: #7c4fd6; }
  .status-chip .dot { width: 6px; height: 6px; border-radius: 50%; }
  .status-chip.success .dot { background: #1e9e5f; }
  .status-chip.confirming .dot { background: #7c4fd6; }

  .holding-progress-bg { height: 5px; border-radius: 10px; background: #eceef3; margin-top: 6px; }
  .holding-progress-fill { height: 5px; border-radius: 10px; background: var(--main-color); }



  .table_wrapper {
  border: 1px solid #D4D8DD;
  border-radius: 16px;
  overflow: hidden;
}
.table-receipts td.text-end {
  display: flex;
  justify-content: end;
}
.card-panel { background: #fff; border: 1px solid #edeef3; border-radius: 16px; padding: 1.3rem 1.5rem; margin-bottom: 1rem; }

  .header-title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; }
  .header-icon { width: 34px; height: 34px; border-radius: 8px; background: #eceefb; color: #3b4fd6; display: flex; align-items: center; justify-content: center; }

  .received-badge {
    background: #e7f7ef; color: #1e9e5f; font-size: 0.8rem; font-weight: 600;
    padding: 4px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px;
  }
  .received-badge .dot { width: 6px; height: 6px; background: #1e9e5f; border-radius: 50%; }

  .product-avatar-box {
    width: 46px; height: 46px; border-radius: 10px; background: #eceefb; color: #3b4fd6;
    font-weight: 700; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .mini-badge {
    font-size: 0.72rem; font-weight: 600; padding: 3px 9px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; margin-right: 6px;
  }
  .mini-badge.received { background: #e7f7ef; color: #1e9e5f; }
  .mini-badge.finance { background: #eceefb; color: #3b4fd6; }
  .mini-badge .dot { width: 5px; height: 5px; border-radius: 50%; }
  .mini-badge.received .dot { background: #1e9e5f; }
  .mini-badge.finance .dot { background: #3b4fd6; }

  .label-small { font-size: 0.68rem; letter-spacing: 1px; color: #9096ac; font-weight: 700; text-transform: uppercase; }

  .btn-outline-header {
    border: 1px solid #e4e6ee; background: #fff; border-radius: 10px;
    padding: 0.5rem 1rem; font-weight: 600; font-size: 0.85rem; color: #1f2430;
  }

  .doc-row {
    display: flex; align-items: center; gap: 12px;
    background: #f7f8fb; border-radius: 12px; padding: 0.7rem 1rem;
  }
  .doc-icon { width: 34px; height: 34px; border-radius: 8px; background: #eceefb; color: #3b4fd6; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .doc-title { margin: 0; font-weight: 600; font-size: 0.88rem; }
  .doc-sub { margin: 0; font-size: 0.75rem; color: #8b90a5; }

  .icon-btn-round {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid #e4e6ee;
    background: #fff; display: flex; align-items: center; justify-content: center; color: #6b7280; flex-shrink: 0;
  }

  .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* border: 1px solid #eee; */
  border-radius: 12px;
  overflow: hidden;
}
.stat-card {
  padding: 20px 24px;
  border-right: 1px solid #eee;
}
.stat-card:last-child { border-right: none; }
.stat-card .stat-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.03em;
  margin: 0 0 0px;
}
.stat-card .stat-value {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 0px;
  color: #111;
}
.stat-card .stat-delta { font-size: 13px; margin: 0; }
.stat-card .stat-delta.positive { color: #16a34a; }
.stat-card .stat-delta.blue { color: #2563eb; }
.stat-card .stat-delta.amber { color: #d97706; }

.report_wrapper .form-check-input {
  margin-left: -5px;
}


.doucment_wrapper .input-group.flex-grow-1 {
  width: auto;
}

.doucment_wrapper .input-group input {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.doucment_wrapper .input-group .input-group-text{ 

  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;

 }

 .doucment_wrapper .bg-light tr th {
  background: #ECF1F566;
  font-weight: 500;
}

.doucment_wrapper .fw-semibold {
  font-size: 14px;
}
.doucment_wrapper small {
  font-size: 12px;
}
.doucment_wrapper .bg-light.rounded {
  background: #1E41A81A !important;
  border-color: #1E41A81A !important;
  width: 40px;
  height: 40px;
  text-align: center; border-radius: 16px !important;
}
.doucment_wrapper .bg-light.rounded i{ color:var(--main-color) !important; }


.doucment_wrapper small.text-muted.text-uppercase {
  font-weight: 600;
}
.doucment_wrapper table {
  font-size: 13px;
}

.doucment_wrapper .badge {
  padding: 6px 14px;
}


.doucment_wrapper .badge.rounded-pill  {
  display: inline list-item;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  white-space: nowrap;
}

.report-wrap.ins_wrap.upload_wrapper h5 {
  font-size: 18px;
}

.upload_wrapper input.form-control.bg-light{
  background: #FAFCFE !important;
  border-radius: 16px !important;
  border-color: #D7DBE0 !important;
}


.card-panel { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 24px; }
  .timeline { border-left: 2px solid #eee; padding-left: 22px; margin-left: 4px; }
  .timeline-item { position: relative; margin-bottom: 26px; }
  .timeline-item:last-child { margin-bottom: 0; }
  .timeline-dot {
    position: absolute; left: -28px; top: 5px;
    width: 11px; height: 11px; border-radius: 50%;
    background: #d1d5db;
  }
  .timeline-dot.current { background: #2b3a9e; }
  .badge-current {
    background: #dcfce7; color: #16a34a;
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
  }
  .diff-box { border: 1px solid #eee; border-radius: 12px; padding: 18px; }
  .diff-add { background: #dcfce7; color: #166534; border-radius: 8px; padding: 10px 14px; font-size: 14px; margin-bottom: 10px; }
  .diff-remove { background: #fee2e2; color: #991b1b; border-radius: 8px; padding: 10px 14px; font-size: 14px; margin-bottom: 10px; }
  .diff-plain { padding: 0 4px; font-size: 14px; margin-bottom: 10px; }
  .download-btn {
    border: 1px solid #dee2e6; background: #f8f9fa; color: #212529;
    border-radius: 10px; padding: 8px 16px; font-size: 13px; font-weight: 500;
  }


.archive-card {
    background: #fff; border: 1px solid #eee; border-radius: 14px;
    padding: 16px; display: flex; align-items: center; gap: 14px;
  }
  .archive-icon {
    width: 40px; height: 40px; border-radius: 10px; background: #f1f3f5;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .btn-restore,.btn-filter {
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 16px;
  font-size: 13px;
  white-space: nowrap;
  width: 85px;
  height: 35px;
  text-align: center;
  padding: 0;
  font-weight: 600; justify-content: center;
}
.btn-empty {
  border: 1px solid #D7DBE0;
  color: #E62C2C;
  background: #fff;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}
  


  .archive_wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 3px;
}


.report-card {
  background: var(--rc-bg);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.report-card:hover {
  border-color: #D8DBE0;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}

.report-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--rc-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.report-icon i {
  color: var(--rc-icon-color);
  font-size: 18px;
  line-height: 1;
}

.report-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--rc-title-color);
  margin: 0 0 4px;
  line-height: 1.3;
}

.report-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--rc-desc-color);
  line-height: 1.4;
  margin: 0 0 16px;
  min-height: 34px;
  flex-grow: 1;
}

.report-actions {
  display: flex;
  gap: 8px;
}

.report-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--rc-btn-border);
  background: var(--rc-bg);
  border-radius: 12px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rc-title-color);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.report-btn i {
  font-size: 14px;
  line-height: 1;
}

.report-btn:hover {
  background: var(--rc-btn-hover-bg);
  border-color: #D8DBE0;
}

.report-btn:active {
  transform: scale(0.98);
}



.outer-card {
    background: white;
    border: 1px solid var(--input);
    border-radius: 20px;
    padding: 20px;
  }

  .outer-card .stat-card {
    background: white;
    border: 1px solid var(--input);
    border-radius: 16px;
    padding: 16px;
    height: 100%;
  }

  .stat-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-secondary);
  }

  .stat-value { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; }

  .pill {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
  }
  .pill-blue { background: rgba(30,65,168,0.1); color: var(--brand); }
  .pill-purple { background: rgba(106,91,208,0.12); color: var(--purple); }
  .pill-green { background: rgba(35,161,54,0.1); color: var(--success); }
  .pill-red { background: rgba(224,70,60,0.1); color: var(--red); }

  .stat-sub { font-size: 12px; color: var(--text-secondary); }

  .sub-card {
    background: white;
    border: 1px solid var(--input);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
  }

  .sub-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 2px; }
  .sub-card .sub-note { font-size: 12px; color: var(--text-secondary); }

  .btn-tab {
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--input);
    background: white;
    color: var(--ink);
  }
  .btn-tab.active { background: var(--brand); color: white; border-color: var(--brand); }

  .day-col {
    border: 1px solid var(--input);
    border-radius: 14px;
    padding: 12px 6px;
    text-align: center;
    height: 100%;
  }
  .day-col.selected {
    border-color: var(--brand);
    background: rgba(30,65,168,0.04);
    box-shadow: inset 0 0 0 1px var(--brand);
  }

  .day-dow { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; color: var(--text-secondary); }
  .day-date { font-size: 12px; font-weight: 600; margin-bottom: 10px; }

  .day-bar-wrap {
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 8px;
  }
  .day-bar { width: 10px; border-radius: 6px; }

  .day-amount { font-size: 13px; font-weight: 700; }
  .day-count { font-size: 10px; color: var(--text-secondary); }

  .queue-row { margin-bottom: 14px; }
  .queue-row:last-child { margin-bottom: 0; }

  .queue-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
  }
  .queue-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px; }

  .queue-bar {
    height: 6px;
    border-radius: 999px;
    background: var(--divider);
  }
  .queue-bar .progress-bar { border-radius: 999px; }

  .queue-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--divider);
  }
  .queue-footer .label { font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); }
  .queue-footer .value { font-size: 17px; font-weight: 700; }

  .list-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: var(--background);
    margin-bottom: 10px;
  }
  .list-row:last-child { margin-bottom: 0; }

  .avatar-img {
    width: 40px; height: 40px;
    border-radius: 12px;
    object-fit: cover;
  }

  .list-name { font-weight: 600; font-size: 13.5px; }
  .list-sub { font-size: 12px; color: var(--text-secondary); }

  .amount-red { color: var(--red); font-weight: 700; font-size: 13.5px; }
  .amount-note { font-size: 10.5px; color: var(--text-secondary); }

  .btn-resolve {
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 14px;
  }

  .activity-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .activity-row:last-child { margin-bottom: 0; }

  .activity-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .icon-blue { background: rgba(30,65,168,0.1); color: var(--brand); }
  .icon-green { background: rgba(35,161,54,0.1); color: var(--success); }
  .icon-purple { background: rgba(106,91,208,0.12); color: var(--purple); }
  .icon-red { background: rgba(224,70,60,0.1); color: var(--red); }
  .icon-amber { background: rgba(242,166,24,0.1); color: var(--amber); }

  .activity-title { font-size: 13.5px; font-weight: 600; }
  .activity-sub { font-size: 12px; color: var(--text-secondary); }
  .activity-time { font-size: 11.5px; color: var(--text-secondary); white-space: nowrap; }



  /**************/
  .page-wrap { padding: 28px; }

  .page-title { font-size: 20px; font-weight: 700; margin-bottom: 2px; }
  .page-sub { font-size: 12.5px; color: var(--text-secondary); max-width: 560px; }

  .btn-outline-plain {
    border: 1px solid var(--input);
    background: white;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    padding: 9px 10px;
  }

  .btn-brand {
    background: var(--brand);
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border: none;
  }
  .btn-brand:hover { background: #16327f; color: white; }

  /* STAT CARDS */
  .stat-card {
    background: white;
    border: 1px solid var(--input);
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .stat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }
  .stat-card.bar-purple::before { background: var(--purple); }
  .stat-card.bar-green::before { background: var(--success); }
  .stat-card.bar-amber::before { background: var(--amber); }
  .stat-card.bar-red::before { background: var(--red); }

  .stat-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-secondary);
  }

  .stat-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    flex-shrink: 0;
  }
  .icon-purple { background: var(--purple); }
  .icon-green { background: var(--success); }
  .icon-amber { background: var(--amber); }
  .icon-red { background: var(--red); }

  .stat-value { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; margin: 6px 0; }
  .stat-foot { font-size: 12px; color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }

  /* FILTERS + TABLE CARDS */
  .card-section {
    background: white;
    border: 1px solid var(--input);
    border-radius: 16px;
    padding: 20px;
  }

  .section-title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
  .section-sub { font-size: 12.5px; color: var(--text-secondary); }

  .filter-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
  }

  .form-select {
    border: 1px solid var(--input);
    border-radius: 10px;
    font-size: 13px;
    height: 42px;
    color: var(--ink);
  }
  .form-select:focus { box-shadow: none; border-color: var(--brand); }

  /* TABLE */
  .table-card { padding: 0; overflow: hidden; }
  .table-card-head { padding: 18px 20px; }

  .payout-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
  }
  .payout-table thead tr { background: var(--background); }
  .payout-table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--divider);
    border-top: 1px solid var(--divider);
    white-space: nowrap;
  }
  .payout-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--divider);
    vertical-align: middle;
    white-space: nowrap;
  }
  .payout-table tbody tr:hover { background: rgba(30,65,168,0.02); }

  .link-cell { color: var(--brand); font-weight: 700; }
  .product-cell { font-weight: 700; }
  .amount-cell { font-weight: 700; }
  .dash { color: var(--text-secondary); }

  .investor-cell { display: flex; align-items: center; gap: 8px; }
  .investor-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

  .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
  }
  .status-pill .dot { width: 6px; height: 6px; border-radius: 50%; }

  .status-confirmed { background: rgba(35,161,54,0.1); color: var(--success); }
  .status-confirmed .dot { background: var(--success); }
  .status-sent { background: rgba(56,189,248,0.12); color: #0284c7; }
  .status-sent .dot { background: #0284c7; }
  .status-processing { background: rgba(106,91,208,0.12); color: var(--purple); }
  .status-processing .dot { background: var(--purple); }
  .status-due { background: rgba(242,166,24,0.12); color: #a15c07; }
  .status-due .dot { background: #a15c07; }
  .status-scheduled { background: rgba(30,65,168,0.1); color: var(--brand); }
  .status-scheduled .dot { background: var(--brand); }
  .status-delayed { background: rgba(242,166,24,0.15); color: #b5540a; }
  .status-delayed .dot { background: #b5540a; }
  .status-failed { background: rgba(224,70,60,0.12); color: var(--red); }
  .status-failed .dot { background: var(--red); }

  .table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-size: 12.5px;
    color: var(--text-secondary);
  }

  .page-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--input);
    background: white;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
  }
  .page-btn.active { background: var(--brand); color: white; border-color: var(--brand); }


  .page-wrap { padding: 28px; }

  .breadcrumb-top {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.5px;
  }

  .page-title { font-size: 22px; font-weight: 700; margin: 4px 0 6px; }

  .subheader-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    flex-wrap: wrap;
  }

  .subheader-avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    object-fit: cover;
  }
  .subheader-name { font-weight: 600; color: var(--ink); }

  .btn-outline-plain {
    border: 1px solid var(--input);
    background: white;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    padding: 9px 10px;
  }
  .btn-danger-outline {
    border: 1px solid #f5c2c0;
    background: white;
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    padding: 9px 16px;
  }
  .btn-brand {
    background: var(--brand);
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border: none;
  }

  .card-section {
    background: white;
    border: 1px solid var(--input);
    border-radius: 16px;
    padding: 20px;
  }

  .section-title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
  .section-sub { font-size: 12px; color: var(--text-secondary); margin-bottom: 16px; }

  .card-section .field-box {
    background: #FAFCFE;
    border-radius: 12px;
    padding: 12px 14px;
    /*height: 100%;*/ border: 1px solid #D4D8DD; display: block;
  }
  .field-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
  }
  .field-value { font-size: 14.5px; font-weight: 600; }
  .field-value.red { color: var(--red); }
  .field-value.green { color: var(--success); }
  .field-value.brand { color: var(--brand); }

  .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
  }
  .badge-green { background: rgba(35,161,54,0.1); color: var(--success); }
  .badge-blue { background: rgba(30,65,168,0.1); color: var(--brand); }

  .person-row { display: flex; gap: 14px; }
  .person-avatar { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; }
  .person-name { font-size: 16px; font-weight: 700; }
  .person-role { font-size: 12.5px; color: var(--text-secondary); margin-bottom: 6px; }
  .person-detail-row { font-size: 12.5px; color: var(--text-secondary); }

  .vendor-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(30,65,168,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
  }
  .vendor-name { font-size: 15px; font-weight: 700; }
  .vendor-sub { font-size: 12.5px; color: var(--text-secondary); }

  /* WATERFALL */
  .waterfall-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--muted-bg);
    margin-bottom: 10px; border: 1px solid #D4D8DD;
  }
  .waterfall-row.highlight {
    background: rgba(30,65,168,0.06);
    border: 1px solid var(--brand);
  }
  .waterfall-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--input);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    flex-shrink: 0;
  }
  .highlight .waterfall-num { background: var(--brand); color: white; border-color: var(--brand); }
  .waterfall-title { font-size: 13.5px; font-weight: 700; }
  .waterfall-sub { font-size: 11.5px; color: var(--text-secondary); }
  .waterfall-amount { font-size: 14px; font-weight: 700; }
  .waterfall-pct { font-size: 11px; color: var(--text-secondary); }

  /* TIMELINE */
  .page-wrap-sdf .timeline-item { display: flex; gap: 12px; margin-bottom: 0px; position: relative; }
  .page-wrap-sdf .timeline-item:last-child { margin-bottom: 0; }
  .timeline-dot-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
  .page-wrap-sdf .timeline-item .timeline-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    background: white;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    z-index: 1; position: initial;
  }
  .timeline-dot::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
  .timeline-line { width: 2px; flex: 1; background: var(--divider); margin-top: 2px; }
  .timeline-title { font-size: 13px; font-weight: 700; }
  .timeline-sub { font-size: 11.5px; color: var(--text-secondary); }

  .page-wrap-sdf .timeline-item .ssdf {
  padding-bottom: 18px;
}

  /* DOCS */
  .doc-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--muted-bg);
    margin-bottom: 8px;
  }
  .doc-row:last-child { margin-bottom: 0; }
  .doc-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(30,65,168,0.08);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .doc-name { font-size: 13px; font-weight: 600; }
  .doc-size { font-size: 11px; color: var(--text-secondary); }
  .doc-download { color: #1E40AF; background: none; border: none; }

  .eligibility-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    background: rgba(35,161,54,0.08);
    border-radius: 10px;
    padding: 8px 12px;
  }

  .clawback-note {
    background: rgba(242,166,24,0.1);
    border: 1px solid rgba(242,166,24,0.35);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 12.5px;
    color: #7a4c05;
  }

/* Responsive breakpoints */
@media (max-width: 575.98px) {
  .report-card { padding: 16px; }
  .report-title { font-size: 14px; }
  .report-desc { min-height: auto; margin-bottom: 14px; }
}


@media (max-width: 768px) {
  .details-row { grid-template-columns: 1fr; }
  .preview-field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .preview-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .banner-stats { gap: 1.5rem; }
}




/* ---- Global: form fields never cast box-shadow ---- */
input:not([type="range"]),
select,
textarea,
.form-control,
.form-select,
.form-check-input,
.form-range::-webkit-slider-thumb,
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.form-control:active,
.form-select:active,
.form-control.is-invalid,
.form-select.is-invalid,
.form-control.is-valid,
.form-select.is-valid,
.form-control:focus.is-invalid,
.form-select:focus.is-invalid,
.btn:focus,
.btn:active,
.btn.focus {
    box-shadow: none !important;
}

.select2-container--default .select2-selection,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection {
    box-shadow: none !important;
}


/* Product detail dynamic page */
  .product-detail-page.main-content {
    background: #f8fafc;
    height: auto;
    min-height: 100vh;
    padding: 0;
  }

  .product-detail-page .topbar {
    margin: 0;
    padding: 17px 32px;
  }

  .product-detail-page .topbar h3 {
    color: #101522;
    font-size: 26px;
    line-height: 1.15;
    margin-top: 10px;
  }

  .product-detail-page .breadcrumb-custom {
    color: #4f5b6b;
    font-size: 13px;
  }

  .product-detail-page .search-box {
    border-color: #cfd7e4;
    border-radius: 16px;
    min-height: 48px;
    min-width: 380px;
  }

  .product-detail-page .company-chip {
    border-color: #cfd7e4;
    border-radius: 16px;
    min-height: 48px;
    padding: 6px 12px;
  }

  .product-detail-page .company-avatar {
    background: #f0f4f8;
    color: #101522;
  }

  .product-detail-page .report-wrap {
    background: #f8fafc;
    padding: 64px 48px 48px;
  }

  .product-detail-page .inner_ab {
    margin: 0 auto;
    max-width: none;
  }

  .product-detail-page .pd-card {
    background: #fff;
    border: 1px solid #d7dbe0;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
    margin-bottom: 18px;
    padding: 20px;
  }

  .product-detail-page .pd-invest-banner {
    align-items: center;
    background: #eef3ff;
    border-color: #b8c8ff;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
  }

  .product-detail-page .pd-status-alert {
    align-items: center;
    border: 1px solid;
    border-radius: 16px;
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    min-height: 78px;
    padding: 16px 18px;
  }

  .product-detail-page .pd-status-alert h6 {
    color: #101522;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 4px;
  }

  .product-detail-page .pd-status-alert p {
    color: #3f4b5c;
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
  }

  .product-detail-page .pd-status-alert__icon {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 44px;
    font-size: 20px;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .product-detail-page .pd-status-alert--warning {
    background: #fff7e8;
    border-color: #ffc978;
  }

  .product-detail-page .pd-status-alert--warning .pd-status-alert__icon {
    background: #fff0cf;
    color: #f5a524;
  }

  .product-detail-page .pd-status-alert--success {
    background: #e6f7ed;
    border-color: #9ee0bc;
  }

  .product-detail-page .pd-status-alert--success .pd-status-alert__icon {
    background: #c9f2d8;
    color: #00a651;
  }

  .product-detail-page .pd-status-alert--danger {
    background: #fff0f0;
    border-color: #ffb4b4;
  }

  .product-detail-page .pd-status-alert--danger .pd-status-alert__icon {
    background: #ffe0e0;
    color: #d92d20;
  }

  .product-detail-page .pd-status-alert--draft {
    background: #f3f6fb;
    border-color: #cfd7e4;
  }

  .product-detail-page .pd-status-alert--draft .pd-status-alert__icon {
    background: #e6ebf2;
    color: #526071;
  }

  .product-detail-page .pd-invest-banner h6,
  .product-detail-page .pd-card-title {
    color: #101522;
    font-size: 14px;
    font-weight: 800;
    margin: 0;
  }

  .product-detail-page .pd-muted {
    color: #4f5b6b;
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
  }

  .product-detail-page .pd-primary-btn {
    align-items: center;
    background: #1e41a8;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(30, 65, 168, 0.26);
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    min-height: 40px;
    padding: 0 20px;
    text-decoration: none;
  }

  .product-detail-page .pd-code-badge,
  .product-detail-page .pd-series-badge {
    background: #eef2f7;
    border-radius: 999px;
    color: #1f2937;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    padding: 6px 9px;
  }

  .product-detail-page .pd-live-badge,
  .product-detail-page .pd-status-pill {
    align-items: center;
    background: #e7f8ea;
    border-radius: 999px;
    color: #078a2f;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 7px;
    line-height: 1;
    padding: 7px 12px;
  }

  .product-detail-page .pd-live-badge.is-muted {
    background: #f1f4f8;
    color: #586474;
  }

  .product-detail-page .pd-dot {
    background: currentColor;
    border-radius: 50%;
    height: 6px;
    width: 6px;
  }

  .product-detail-page .pd-title {
    color: #101522;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    margin: 13px 0 4px;
  }

  .product-detail-page .pd-chart-wrap {
    overflow-x: auto;
  }

  .product-detail-page .pd-chart {
    display: block;
    min-width: 900px;
    width: 100%;
  }

  .product-detail-page .pd-chart-label {
    fill: #8ca0bd;
    font-size: 12px;
  }

  .product-detail-page .pd-range {
    background: #eef2f7;
    border: 0;
    border-radius: 11px;
    color: #526071;
    font-size: 11px;
    font-weight: 800;
    margin-left: 4px;
    padding: 7px 11px;
  }

  .product-detail-page .pd-range.active {
    background: #1e41a8;
    color: #fff;
  }

  .product-detail-page .pd-legend {
    align-items: center;
    color: #4f5b6b;
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 10px 22px;
    margin-top: 10px;
  }

  .product-detail-page .pd-legend-dot {
    background: #1e41a8;
    border-radius: 999px;
    display: inline-block;
    height: 8px;
    margin-right: 6px;
    width: 14px;
  }

  .product-detail-page .pd-legend-line {
    background: #1e41a8;
    display: inline-block;
    height: 2px;
    margin-right: 6px;
    vertical-align: middle;
    width: 20px;
  }

  .product-detail-page .pd-split {
    align-items: stretch;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  }

  .product-detail-page .pd-card-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
  }

  .product-detail-page .pd-link {
    color: #1e41a8;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .product-detail-page .pd-terms-grid {
    display: grid;
    gap: 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-page .pd-term-row {
    align-items: center;
    border-bottom: 1px dashed #cfd7e4;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-height: 34px;
  }

  .product-detail-page .pd-term-label {
    color: #546172;
    font-size: 12px;
  }

  .product-detail-page .pd-term-value {
    color: #101522;
    font-size: 12px;
    font-weight: 900;
    text-align: right;
  }

  .product-detail-page .pd-upload-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #cfd7e4;
    border-radius: 14px;
    color: #101522;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    text-decoration: none;
  }

  .product-detail-page .pd-doc-list {
    display: grid;
    gap: 10px;
  }

  .product-detail-page .pd-doc-item {
    align-items: center;
    background: #fbfdff;
    border: 1px solid #d8dee8;
    border-radius: 14px;
    display: grid;
    gap: 12px;
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    min-height: 64px;
    padding: 10px 12px;
  }

  .product-detail-page .pd-doc-icon {
    align-items: center;
    background: #e9f0ff;
    border-radius: 12px;
    color: #2450c7;
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px;
  }

  .product-detail-page .pd-doc-name {
    color: #101522;
    font-size: 12px;
    font-weight: 900;
    margin: 0;
  }

  .product-detail-page .pd-doc-meta {
    color: #4f5b6b;
    font-size: 11px;
    margin: 2px 0 0;
  }

  .product-detail-page .pd-icon-btn {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: #4f5b6b;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    text-decoration: none;
    width: 32px;
  }

  .product-detail-page .pd-empty {
    align-items: center;
    background: #fbfdff;
    border: 1px dashed #cfd7e4;
    border-radius: 14px;
    color: #5f6b7a;
    display: flex;
    min-height: 110px;
    padding: 18px;
  }

  .product-detail-page .pd-table-wrap {
    border: 1px solid #d8dee8;
    border-radius: 14px;
    overflow-x: auto;
  }

  .product-detail-page .pd-table {
    margin: 0;
    min-width: 900px;
  }

  .product-detail-page .pd-table th {
    background: #fbfdff;
    color: #546172;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    text-transform: uppercase;
  }

  .product-detail-page .pd-table td {
    border-top: 1px solid #d8dee8;
    color: #101522;
    font-size: 12px;
    padding: 12px 16px;
    vertical-align: middle;
  }

  .product-detail-page .pd-series-badge.tone-a {
    background: #e8f1ff;
    color: #1641b1;
  }

  .product-detail-page .pd-series-badge.tone-b {
    background: #e8f8ff;
    color: #036b93;
  }

  .product-detail-page .pd-series-badge.tone-c {
    background: #e7f8ea;
    color: #078a2f;
  }

  .product-detail-page .pd-tier-note {
    align-items: center;
    background: #fbfdff;
    border: 1px solid #d8dee8;
    border-radius: 14px;
    color: #4f5b6b;
    display: flex;
    font-size: 12px;
    gap: 10px;
    margin-top: 12px;
    padding: 11px 14px;
  }

  .product-detail-page .pd-avatar {
    align-items: center;
    background: #dbe4f0;
    border-radius: 50%;
    color: #101522;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    overflow: hidden;
    width: 34px;
  }

  .product-detail-page .pd-status-pill {
    padding: 5px 14px;
  }

  .product-detail-page .pd-status-pill.confirming {
    background: #f3e8ff;
    color: #7c3aed;
  }

  @media (max-width: 1199.98px) {
    .product-detail-page .report-wrap {
      padding: 36px 24px;
    }

    .product-detail-page .pd-split {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 767.98px) {
    .product-detail-page .report-wrap {
      padding: 22px 14px;
    }

    .product-detail-page .pd-invest-banner,
    .product-detail-page .pd-status-alert,
    .product-detail-page .pd-card-head {
      align-items: flex-start;
      flex-direction: column;
    }

    .product-detail-page .pd-terms-grid {
      grid-template-columns: 1fr;
    }

    .product-detail-page .pd-title {
      font-size: 1.55rem;
    }
  }
