body {
    font-family: Arial, sans-serif;
    max-width: 100%;
    margin: 0 0;
    padding: 0px;
    background-color: #f5f5f5;
}
h1 {
    color: #bf5700;
}
.accordion {
    margin-bottom: 10px;
}
.accordion-header {
    color: #bf5700;
    background-color: #eee;
    border-bottom: 1px solid #bf5700;
    cursor: pointer;
    padding: 15px;
    border: none;
    text-align: left;
    font-size: 16px;
    transition: 0.4s;
    width: 100%;
    font-weight: bold;
}
.accordion-header:hover {
    background-color: #9b714c;
    color: white;
}
.pdf-embed {
    flex: 1 1 auto;
    height: auto;
    width: 100%;
}
.accordion-header.active {
    background-color: #a34d00;
    color: white;
}
.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
    border-radius: 0 0 5px 5px;
}
.accordion-content.active {
    padding: 15px;
    max-height: 5000px;
    transition: max-height 0.5s ease-in;
}
.file-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}
.file-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.file-list li:last-child {
    border-bottom: none;
}
.file-list a {
    color: #bf5700;
    text-decoration: none;
}
.file-list a:hover {
    text-decoration: underline;
}
.nested-accordion {
    margin-left: 20px;
    margin-top: 10px;
}
.nested-accordion .accordion-header {
    background-color: #eee;
    font-size: 14px;
    padding: 12px;
}
.nested-accordion .accordion-header:hover {
    background-color: #bf5700;
}
.nested-accordion .accordion-header.active {
    background-color: #bf5700;
    color: white;
}
.search-container {
    margin-bottom: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.search-box {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #bf5700;
    border-radius: 5px;
    box-sizing: border-box;
}
.search-box:focus {
    outline: none;
    border-color: #a34d00;
}
.search-results {
    margin-top: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    display: none;
}
.search-results.active {
    display: block;
}
.search-results h2 {
    color: #bf5700;
    margin-top: 0;
}
.no-results {
    color: #666;
    font-style: italic;
}
.highlight {
    background-color: #fff3cd;
    font-weight: bold;
}
.ut-header {
    background: #BF5700;
    padding-top: 5px !important;
    box-sizing: border-box;
    height: 38px;
}
.wrap::before {
    box-sizing: border-box;
}
.ut-shield img {
    height: 28px;
    margin-top: -11px;
    margin-right: 10px;
}
.secondary-identification {
    float: left;
    padding-left: 20px;
    padding-top: 2px;
    color: white;
    font-family: CharisSILW,serif;
    font-size: 15px;
    letter-spacing: 0px;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    box-sizing: border-box;
}
.wrap {
    margin-top: 10px;
}
.ut-shield {
    float: right;
    position: relative;
}
a {
    color: #a04400;
    text-decoration: none;
}
nav.navbar {
    border-bottom: 1px solid #E1DDD2;
    background-color: #fff;
    width: 100%;
    padding-bottom: 0;
}
.ut-shield img {
    height: 28px;
    margin-top: -11px;
}

.title {
    font-size: 2em;
    color: #bf5700;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
}

.pdflink{
    font-size: 1.2em;
    color: #a04400;
    text-decoration: none;
    display: block;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 10px;
}

.pdflink :hover {
    color: #612b00;
}

.content-split {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    padding: 0 20px 20px;
    box-sizing: border-box;
}

.embed-pane {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.text-content{
    flex: 1 1 50%;
    text-align: left;
    padding: 0px 20px;
}

.backbutton{
    color: white;
    margin-left: 20px;
    position: relative;
    top: -5px;
}

.ocr-warning{
    color: #bf5700;
    font-weight: bold;
    margin: 20px 0px;
}

.sticky{
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: #612b00 solid 1px;
    background-color: #f5f5f5;
    margin-bottom: 0px;
}

.embed-pane .pdflink {
    text-align: left;
}

.page-header {
    font-size: 1.2em;
    color: #4b2200;
    margin: 20px 0 10px;
    text-align: left;
    border-bottom: #612b00 solid 1px;
}

.file-summary {
    background: #f9f9f9;
    border-left: 4px solid #b3c6ff;
    padding: 0.75em 1em;
    margin: 5px 0;
    font-style: italic;
    color: #333;
    font-size: 0.98em;
}

@media (max-width: 900px) {
    .content-split {
        flex-direction: column;
    }

    .embed-pane,
    .text-content {
        max-width: 100%;
    }

    .pdf-embed {
        height: 60vh;
    }
}