
  /* Container */
  
  div.code-item > section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  section.usn_cmp_code {
      padding-bottom: 0 !important;
  }
  
  div.info.col > p.secondary-heading {
      padding-top:30px !important;
  }
  
  
  .psps-container {
    border: 1px solid #d5d7db;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0,0,0,0.03);
	width:100%;
	
  }

  /* Header / Toggle */
  .psps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .875rem 1rem;
    cursor: pointer;
    background: #f7f7f9;
    border: none; /* button reset */
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
    scroll-margin-top: 130px;
  }
  .psps-header:focus {
    outline: 2px solid #4978f2;
    outline-offset: 2px;
  }
  .psps-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
  }

  /* Caret icon */
  .psps-caret {
    inline-size: 1em;
    block-size: 1em;
    display: inline-block;
    transition: transform .2s ease;
  }
  .psps-caret svg {
    display: block;
  }
  .psps-header[aria-expanded="true"] .psps-caret {
    transform: rotate(90deg);
  }

  /* Content region */
  .psps-content {
    padding: 1rem;
    border-top: 1px solid #e6e7eb;
    max-height: 75vh; /* limit height of doc to 75% of visual height */	
	overflow: auto;  /* vertical scroll bars only */
  }

  /* Hidden state (toggle this class) */
  .psps-is-hidden {
    display: none !important;
  }

  /* Optional: document typography */
  .psps-document {
    line-height: 1.55;
    color: #222;
  }
  .psps-document h2,
  .psps-document h3 {
    margin-top: 1.25rem;
  }
  .psps-document a {
    color: #0b5fff;
    text-decoration: underline;
  }
  ol.decimal-list {
    counter-reset: item var(--start, 0);
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    margin-bottom: 0.5em;
}
ol.decimal-list > li {
    counter-increment: item;
    display:grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.75em;
    align-items:  start;
}   
ol.decimal-list > li:before {
    content: counters(item, ".") " ";
    grid-column: 1;
}   

ol.decimal-list > li:has(> h2)::before {
  font-size: 1.875rem;        
  font-weight: 600;
}

/* If the li starts with an h3 */
ol.decimal-list > li:has(> h3)::before {
  font-size: 1.45rem;      
  font-weight: 500;
}
ol.decimal-list > li:has(> h4)::before {
  font-size: 1.3rem;       
  font-weight: 400;
}

ol.decimal-list > li > * {
    grid-column: 2;
}
/* 🔧 Key fix: neutralize heading top/bottom margins inside the list */
ol.decimal-list :where(h1, h2, h3, h4, h5, h6) {
  margin-block: 0;     /* remove top & bottom margins */
}

/* If you still want spacing under headings: add it as needed */
ol.decimal-list :where(h1, h2, h3, h4, h5, h6) + * {
  margin-top: 0.75em;  /* controlled spacing after a heading */
}

.psps-document > a[download],
 .psps-document > section > a[download]{
	display: block;
	width: fit-content;
	margin: 0.25rem 0.5rem 0 auto;
	color: white;
	background-color: rgb(0,120,122);
	padding: 2px 5px;
	border-radius:5px;
}

.psps-document > a[download]:hover,
 .psps-document > section > a[download]:hover {
	color: white;
	background-color: #299c9e;
	border: 1px solid rgb(0,120,122);
}

/* Toolbar inside accordion content */
.psps-toolbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.4rem;
    background: #fff;
    z-index: 10;
    border-bottom: 1px solid #ddd;
}

.psps-toolbar button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    background: #f5f5f5;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

/* Modal */
.psps-modal {
    display: none;
}

.psps-modal.is-open {
    display: block;
}

.psps-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
}

.psps-modal-window {
    position: fixed;
    inset: 5%;
    background: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
	max-width: 8.5in;
	margin:auto;
}

.psps-modal-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
}

.psps-modal-content {
	box-sizing: border-box;
	width: 100%;
	max-width:100%;
    overflow-y: auto;
}

.psps-modal-content .psps-content {
  max-height: none !important;
  overflow: visible !important;
}


.print-logo {
	height: 100px;
	width: auto;
	padding-left: 5px;
}





    