@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    color: #0044EE;
    font-family: "Outfit", sans-serif;
    line-height: 1.5;   /* <-- baseline */
    font-size: 16px;
    transition: .3s;
}
.common-body{
    background: #afcdf4;
}
h1{
    font-size: 40px;
}
h2{
    font-size: 32px;
}
h3{
    font-size: 28px;
}
h4{
    font-size: 24px;
}
h5{
    font-size: 20px;
}
h6{
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    color: #0044EE;
}

button{
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
}

input{
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
}
.title-xxl{
    font-size: 32px;
}
.title-xl{
    font-size: 28px;
}
.title-lg{
    font-size: 24px;
}
.title-md{
    font-size: 20px;
}
.title-base{
    font-size: 18px;
}
.title-sm{
    font-size: 16px;
}




.login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    background-color: #DEE3E9;
    z-index: 1;
}
.login-page-logo img {
    width: 190px;
    margin: 0 auto;
}
.login-page-logo {
    margin-bottom: 30px;
    text-align: center;
}
.login-page-logo a {
    display: inline-block;
}
.login-container {
    width: 320px;
    margin: 0 auto;
}
.single-field {
    width: 100%;
    margin-bottom: 15px;
}
.single-field input {
    width: 100%;
    height: 36px;
    border-radius: 40px;
    border: none;
    padding: 6px 20px;
    font-size: 14px;
}
.white-field input{
    background-color: #fff;
    color: #001144;
}
.single-field input::placeholder{
    opacity: 1;
    color: #7B8097;
}
.common-btn {
    font-size: 14px;
    color: #F5EFEB;
    display: inline-block;
    width: 100%;
    padding: 9px 10px;
    border-radius: 100px;
    background-color: #0044EE;
    transition: .3s;
}
.shp-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    max-width: 320px;
}
.shp-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    max-width: 320px;
}
.magic-notification {
    background: #0044EE;
    color: #fff;
    font-size: 14px;
    padding: 0px 20px;
    height: 48px;
    border-radius: 100px;
    display: none;
    align-items: center;
    gap: 0 10px;
    width: 320px;
    justify-content: space-between;
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 9999999999;
}
.delete-notification{
    background: #0044EE;
    color: #fff;
    font-size: 14px;
    padding: 0px 20px;
    height: 48px;
    border-radius: 100px;
    display: none;
    align-items: center;
    gap: 0 10px;
    width: 320px;
    justify-content: space-between;
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 9999999999;
}
.magic-notification.show {
    display: flex;
}
.delete-notification.show {
    display: flex;
}
.delete-notification p, .magic-notification p {
    margin: 0;
}
.delete-notification span, .magic-notification span {
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    transition: .3s;
}
.with-sidebar {
    padding-left: 320px;
}
.sidebar-wrapper {
    background-color: #DEE3E9;
    padding: 70px 40px;
    width: 320px;
    height: 100%;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sidebar-logo {margin-bottom: 30px;}

.sidebar-logo img {
    max-height: 55px;
    width: auto;
}
.sidebar-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 400;
}
.sidebar-logo a h2{
    font-weight: 400;
    font-size: 30px;
    transition: .3s;
    opacity: 1;
}
.sidebar-logo a h2 span{
    text-transform: uppercase;
}
main{
    height: 100%;
    width: 100%;
}
.main-container {
    padding: 70px 40px;
    background-color: #F5EFEB;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    height: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 999;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.1));
}
.sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 0 20px;
}

.sidebar-title h4 {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #001144;
    letter-spacing: .4px;
}
.sidebar-close {
    background: #F5EFEB;
    display: inline-flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    cursor: pointer;
}
.sidebar-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar-menu ul li {
    display: block;
    margin-bottom: 6px;
    width: 100%;
}
.sidebar-menu ul li a {
    display: flex;
    align-items: center;
    gap: 0 12px;
    color: #001144;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
    padding: 11px 20px;
    border-radius: 100px;
}
.sidebar-menu ul li svg {
    transition: .3s;
    max-width: 24px;
    max-height: 24px;
}
.sidebar-menu ul li a span {
    line-height: 1;
    padding: 0;
    margin: 0;
    position: relative;
    top: 1px;
}
.sidebar-menu ul li a.active{
    background-color: #F5EFEB;
    color: #0044EE;
}
.sidebar-menu ul li a.active svg path{
    fill: #0044EE;
}
.sidebar-menu ul li a.active svg path{
    stroke: #0044EE;
}
.sidebar-menu ul li a:hover{
    background-color: #F5EFEB;
    color: #0044EE;
}
.sidebar-menu ul li a:hover svg path{
    fill: #0044EE;
}
.sidebar-menu ul li a:hover svg path{
    stroke: #0044EE;
}
.with-sidebar.active .sidebar-wrapper {
    left: -100%;
    opacity: 0;
    visibility: hidden;
}
.common-body.with-sidebar.active {
    padding-left: 115px;
}

.sidebar-closed-wrap {
    position: fixed;
    top: 0;
    width: 115px;
    padding: 70px 28px;
    left: -100%;
    height: 100%;
    z-index: 9;
    transition: .4s;
    visibility: hidden;
    opacity: 0;
}
.logo-two img {
    width: 54px;
    margin: 0 AUTO;
}
.menu_active{
    margin-top: 30px;
    text-align: center;
}
.menu_active span {
    background: #F5EFEB;
    display: inline-flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    cursor: pointer;
}
.sidebar-closed-wrap.active {
    opacity: 1;
    visibility: visible;
    left: 0;
}




.title-wrap{
    margin-bottom: 30px;
}
.request-form form {
    display: flex;
    align-items: center;
    gap: 0 12px;
}
.request-form .single-field {
    width: 240px;
    margin: 0;
}
.request-form .common-btn {
    padding-left: 24px;
    padding-right: 24px;
}
.offwhite-field input{
    background: #DEE3E9;
    color: #0044EE;
}
.offwhite-field input::placeholder{
    color: #001144;
    opacity: .5;
}
.request-form {
    padding-bottom: 70px;
    margin-bottom: 70px;
    border-bottom: 1px solid #E2DAD4;
}
.title-wrap.title-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 15px;
}
.title-wrap.title-flex .search-box{
   width: 240px;
}



.report-table {
  width: 100%;
  overflow: hidden; /* ensures radius cuts off borders */
  border-radius: 12px; 
   border: 1px solid #E2DAD4;/* round corners */
}

.report-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #E2DAD4;
  border-radius: 12px; /* radius on table */
  overflow: hidden; /* fixes corner clipping */
   table-layout: fixed;
}
.report-table th,
.report-table td {
  padding: 15px 12px;
  text-align: left;
  border: 1px solid #E2DAD4;
  font-size: 14px;
  font-weight: 400;
    white-space: nowrap; 
    text-overflow: ellipsis;   /* prevent text wrapping */
}
.report-table th {
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .2px;
}
.action-btns {
  display: flex;
  height: 100%;
}
.report-table th:last-child,
.report-table td:last-child {
  width: 96px;
  border: none;
  border-top: 1px solid #E2DAD4;
}
.report-table tr td:last-child {
    padding: 0;
    height: 100%;
}
.action-btns {
    padding: 0 !important;
    height: 100%;
}
.action-btns a {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
    border: none;
    min-height: 52px;
    text-decoration: none;
    background: transparent;
}
.action-btns a:first-child {
    border-right: 1px solid #E2DAD4;
}
.sidebar-bottom-wrap a {
    display: flex;
    align-items: center;
    gap: 0 12px;
    text-decoration: none;
    color: #001144;
    font-size: 14px;
    font-weight: 400;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 100px;
    transition: .3s;
}
.sidebar-bottom-wrap a img{
    width: 24px;
}
.sidebar-bottom-wrap a:hover{
    background-color: #F5EFEB;
}
.invite-user{
    margin-top: 70px;
}


/*-------- Custom CheckBox Style Start --------*/
/* The container */
.codeplay-ck .container-ck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .codeplay-ck .container-ck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .codeplay-ck .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: transparent;
	border: 1px solid #001144;
    border-radius: 4px;
}
  
  /* On mouse-over, add a grey background color */
  .codeplay-ck .container-ck:hover input ~ .checkmark {
   
  }
  
  /* When the checkbox is checked, add a blue background */
  .codeplay-ck .container-ck input:checked ~ .checkmark {
    background-color: #0044EE;
    border-color:#0044EE ;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .codeplay-ck .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .codeplay-ck .container-ck input:checked ~ .checkmark:after {
    display: block;
  }
.codeplay-ck .container-ck .checkmark::after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.codeplay-ck .container-ck p {
	margin: 0;
	padding: 0;
	font-size: 16px;
	letter-spacing: .3px;
	font-weight: 400;
	position: relative;
	top: -4px;
}
.codeplay-ck {
    display: inline-block;
}
.managle-account-table tr th:nth-child(3){
    width: 96px;
}
td.delete-item button {
    line-height: 1;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    top: 3px;
}
td.delete-item{
    padding: 12px !important;
}
.managle-account-table .codeplay-ck {
    display: inline-block;
    height: 20px;
    position: relative;
    top: 3px;
}
.credit-info label{
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
    color: #001144;
    font-weight: 700;
    display: block;
}
.credit-info input::placeholder{
    opacity: 1;
    color: #0044EE;
}
.payment-wrap {
    width: 100%;
    position: relative;
    height: 100%;
}
.payment-option-wrapper {
    display: grid;
    width: 100%;
    height: calc(100vh - 140px);
    grid-template-columns: repeat(2, 1fr);
}
.payment-wrap:first-child {
    padding-right: 40px;
    border-right: 1px solid #E2DAD4;
}
.payment-wrap:last-child {
    padding-left: 40px;
}
.credit-total-info ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 14px;
}
.total-text {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #E2DAD4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
}
.total-text p{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}
.total-text span{
    font-weight: 700;
    font-size: 12px;
}
.credit-total-info {
    width: 100%;
    margin-top: 32px;
}
.card-information label {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
    color: #001144;
    font-weight: 700;
    display: block;
}
.card-field {
    background: #DEE3E9;
    padding: 0 12px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 1px solid #F5EFEB;
}
.card-field img {
    height: 16px;
    width: auto;
    flex-shrink: 0;
}
.card-field input {
    width: 100%;
    background: transparent;
    padding: 4px 12px;
    height: 36px;
    font-size: 14px;
    color: #001144;
    padding-left: 6px;
}
.card-field input::placeholder{
    opacity: 1;
    color: #6F7A96;
    font-size: 14px;
}
.card-others-info div {
    border-radius: 0;
}
.card-others-info {
    display: flex;
    justify-content: space-between;
    gap: 0 1px;
}

.card-others-info div {
    width: 100%;
}
.card-others-info .card-field:first-child {
    border-bottom-left-radius: 15px;
}
.card-others-info .card-field:last-child {
    border-bottom-right-radius: 15px;
}
.card-option-wrap {
    margin-bottom: 32px;
}
.rounded-field{
    border-radius: 50px;
}
.card-field select {
    width: 100%;
    height: 36px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #0044EE;
    font-size: 14px;
    outline: none;
}
.address-info .card-field:last-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.pay-btn button {
    background: #0044EE;
    width: 100%;
    height: 44px;
    border-radius: 100px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    transition: .3s;
}
.pay-btn{
    margin-bottom: 15px;
}
.payment-main-info-wrap {
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.method-info p {
    color: #878482;
    font-size: 12px;
    letter-spacing: .2px;
    font-weight: normal;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 5px;
}
.method-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-info p {
    color: #878482;
    font-size: 12px;
    letter-spacing: .2px;
    font-weight: normal;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 5px;
    position: relative;
    padding-right: 15px;
}

.method-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0 12px;
    line-height: 1;
    padding-left: 15px;
    border-left: 1px solid #E2DAD4;
}

.method-info ul li a {
    text-decoration: none;
    font-size: 12px;
    color: #878482;
    transition: .3s;
}
.method-info ul li a:hover{
    color: #0044EE;
}
.stripe-vanilla .single-field input{
    border-radius: 6px;
}
.stripe-vanilla .card-field{
    background-color: #fff;
}
.stripe-vanilla label{
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
}
.card-info-two {
    border-radius: 6px;
}
.no-bg {
    background-color: unset;
    padding-left: 0;
}
.summary-wrapper-main{
   padding-right: 125px;
}
.report-client-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0 12px;
    flex-shrink: 0;
}
.report-client-info ul li {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #0044EE;
    gap: 0 12px;
    align-items: center;
    display: flex;
}
.report-client-info ul li span {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #0044EE;
    border-radius: 100%;
    line-height: 1;
}
.just-line {
    height: 1.5px;
    background-color: #0044EE;
    width: 100%;
    min-width: 120px;
}
.title-inner {
    display: inline-block;
    width: 100%;
    flex-shrink: 1;
    white-space: nowrap;
}
.report-client-info {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 30px;
}
.summary-dots-logo {
    margin-bottom: 24px;
}
.summary-dots-logo img {
    width: 60px;
}
.summary-title h2 {
    font-size: 40px;
    font-weight: normal;
    margin: 0;
    display: inline-block;
    flex-shrink: 0;
}
.summary-title {
    display: flex;
    align-items: center;
    gap: 0 16px;
    justify-content: space-between;
    margin-bottom: 24px;
}
.title-ui {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 16px;
}
.title-icon {
    width: 40px;
    flex-shrink: 0;
}
.heighlight-text {
    color: #0044EE;
    font-weight: 700;
}
.summary-content p{
    font-family: "STIX Two Text", serif;
    color: #001144;
    font-size: 16px;
    line-height: 145%;
    margin-bottom: 24px;
}
.summary-content {
    font-family: "STIX Two Text", serif;
}
.summary-content p:last-child{
    margin-bottom: 0;
}
.summary-box {
    background-color: #F5EFEB;
    padding: 72px 40px;
    border-radius: 32px;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.1));
}
.inner-title{
    margin-bottom: 24px;
    font-family: "Outfit", sans-serif;
}
.info-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 6px;
}
.info-list ul li {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    position: relative;
    padding-left: 15px;
}
.info-list ul li::after {
    width: 4px;
    height: 4px;
    background: #000;
    content: '';
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 9px;
}
.overview-wrap{
    margin-bottom: 70px;
}
.info-list p {
    margin-bottom: 10px;
    font-weight: 700;
    color: #001144;
}
.factor-wrap .info-list {
    margin-top: 24px;
}

/* Wrapper */
.development-table {
  max-width: 100%;
  border: 1px solid #E2DAD4; /* border all sides */
  border-radius: 12px;
  overflow-x: auto;
}

/* Table */
.development-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E2DAD4; /* border all sides */
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}

/* Head */
.development-table thead th {
  text-align: left;
  font-weight: 600;
  padding: 12px 14px;
  border: 1px solid #E2DAD4;
  background: none; /* remove bg */
  font-size: 16px;
  color: #001144;
}

/* Cells */
.development-table td {
  padding: 12px 14px;
  border: 1px solid #E2DAD4;
  vertical-align: top;
  color: #111827;
  font-size: 16px;
  line-height: 140%;
}

/* Fix last 2 columns width */
 
.development-table th:nth-child(2),
.development-table th:nth-child(3) {
  width: 170px;
}

.advisory-table table th{
    width: auto !important;
}
.advisory-table table th:first-child{
    width: 240px !important;
}

.advisors-overview{
    margin-top: 24px;
    margin-bottom: 0;
}
.development-table.Growth-table table {
    table-layout: fixed;
}
.development-table.Growth-table th, .development-table.Growth-table td {
  text-align: left;
  width: 16.66%; /* 100 / 6 = 16.66% */
}
.content-box {
    margin-top: 25px;
}
.factor-wrap h4{
    font-family: "Outfit", sans-serif;
}
.factor-wrap{
    margin-top: 70px;
}
.info-list ul li a {
    color: #001144;
    font-weight: normal;
    display: inline-block;
    width: 100%;
}
.modal__screen {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 999999 !important;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    visibility: hidden;
    opacity: 0;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.1));
    padding: 12px;
}
.modal__screen.active{
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #F5EFEB;
    padding: 70px;
    border-radius: 24px;
    width: 560px;
}
.modal-content h2 {
    text-align: center;
}
.modal-action {
    display: flex;
    align-items: center;
    gap: 0 8px;
    margin-top: 32px;
}
.common-btn.btn-normal {
    background: #DEE3E9;
    color: #001144;
}
.responsive-menu {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 0 24px;
    justify-content: space-between;
}
.logo-mobile img {
    width: 160px;
}
.menu_trigger {
    display: block;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 100%;
    cursor: pointer;
    padding:11px 8px;
    position: fixed;
    z-index: 999999999;
    right: 24px;
}
.menu_trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #001144;
    transition: .3s;
}
.menu_trigger span:nth-child(2) {
    margin: 4px 0px;
}

.menu_trigger.active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.menu_trigger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
    position: relative;
}

.menu_trigger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -6px;
    position: relative;
}
.responsive-menu{
    display: none;
}
.title-icon img {
    width: 100%;
}



























@media print {
  /* Make sure colors are printed */
  * {
    -webkit-print-color-adjust: exact !important; /* Chrome/Safari */
    print-color-adjust: exact !important; /* Firefox */
    color-adjust: exact !important; /* Older browsers */
  }

  /* Horizontal lines */
  .just-line {
    background-color: #0044EE !important; 
  }

  /* Dots */
  .dot {
    background-color: #0044EE !important; /* Your dot color */
  }
}



/* ---------- GENERAL PRINT FIXES ---------- */
@media print {
  /* Make the page use full width and avoid unexpected scrollbars */
  html, body {
    width: 100%;
    height: auto !important;
    margin: 0;
    padding: 0; /* fallback */
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
    print-color-adjust: exact !important;         /* Standard */
    color-adjust: exact !important;               /* legacy */
  }

  /* Force backgrounds, colors and borders to print */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Example: ensure sections keep their background and borders */
  .print-section {
    background-clip: padding-box !important; /* prevents background bleed */
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    box-shadow: none !important; /* shadows often don't print well */
  }

  /* Tables — keep styling */
  
  th, td {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Prevent cutting inside important blocks */
  .avoid-break, .print-section {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  /* Page break helpers */
  .page-break { page-break-before: always !important; break-before: page !important; }

  /* Hide non-print elements (navigation, buttons, ads...) */
  .no-print, nav, .btn, .actions, .ads {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }


  /* Images: scale down to fit and avoid distortion */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid !important;
  }

  /* Links: show URL after text if needed */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #000;
  }

  /* Force visible borders for elements that used outline/shadow only */
 
}

/* Optional: small-screen preview when printing from mobile */
@media screen and (max-width: 640px) {
  .print-section { padding: 12px; }
}
