@font-face {
    font-family: 'CorporateS';
    src: url('../fonts/CorporateS-Regular.woff') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'CorporateS';
    src: url('../fonts/CorporateS-Bold.woff') format('opentype');
    font-weight: 700;
    font-style: normal;
}

.font-CorporateS {
    font-family: 'CorporateS', sans-serif;
}

.font-regular {
    font-family: 'CorporateS', sans-serif;
    font-weight: 400;
}

.font-bold {
    font-family: 'CorporateS', sans-serif;
    font-weight: 700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}

html {
    font-size: 18px;
    line-height: 24px;
    font-family: 'CorporateS', sans-serif;
    font-weight: 400;
    height: 100%;
}

body {
    font-family: 'CorporateS', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0 auto;
    max-width: 1320px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

header {
    position: relative;
}

.copy-right {
    border-top: 1px solid #B0B2B4;
    margin-top: 16px;
    padding-top: 16px;
    color: #6E6F70;
    font-size: 14px;
    padding-right: 18px;
    padding-left: 18px;
    line-height: 24px;
}

footer {
    width: 100%;
    border-top: 1px solid #B0B2B4;
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 18px;
    padding-left: 18px;
}

.footer-address {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.footer-contact {
    display: flex;
    flex-direction: row;
}

.footer-contact p {
    font-size: 16px;
    color: #333333;
}

.footer-contact a {
    color: #333333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 8px;
}

.footer-link {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-link:focus,
.footer-contact a:focus {
    outline: 2px solid #333333;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .footer-links {
        margin-top: 0;
    }
}

.wcag-badge {
    height: 42px;
}

.text-display {
    font-size: 32px;
    line-height: 37px;
    font-weight: 400;
    font-family: 'CorporateS', sans-serif;
}

.center-container {
    width: 580px;
    max-width: 640px;
    margin: 0 auto;
}

.section-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

a svg {
    margin-left: 8px;
}

.large-text {
    font-family: 'CorporateS', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
}

.small-text {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.content-text {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
}

.center-container a {
    font-family: 'CorporateS', sans-serif;
    font-size: 18px;
    text-decoration: underline;
    cursor: pointer;
    line-height: 28px;
    color: #333333;
}

h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    color: #333333;
    font-family: 'CorporateS', sans-serif;
}

.text-h2 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}

button {
    font-family: 'CorporateS', sans-serif;
    cursor: pointer;
}

.large-container {
    display: block;
    max-width: 1320px;
    margin: 0 auto;
}


.header-menu {
    position: absolute;
    top: -100vh; /* Hide above screen */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: start;
    padding: 20px 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, top 0.3s ease-in-out;
    display: none;
}

.header-menu.active {
    display: block;
    top: 100%;
    opacity: 1;
    transform: translateY(0);
}

.header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu li {
    padding: 10px 0;
}

.header-menu a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    padding: 10px;
    display: block;
}

.header-menu a:hover,
.header-menu a:focus,
.header-menu a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-color: #94BF05;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.hamburger-menu {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: none;
    transition: transform 0.3s ease-in-out;
}

.hamburger-menu.active {
    transform: rotate(180deg);
}

.mobile-menu {
    display: none!important;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.header-bar img {
    width: auto;
    max-height: 50px;
    flex-shrink: 1;
    min-width: 80px;
}


.header-menu-desktop ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.header-menu-desktop a {
    font-size: 18px;
    line-height: 21px;
    color: #000;
    text-decoration: none;
    padding: 8px;
    display: inline-block;
}
.header-menu-desktop ul li.active a,
.header-menu-desktop ul li a:hover,
.header-menu-desktop ul li a:focus,
.submenu a:hover,
.submenu-toggle:hover,
.header-menu-desktop a:hover,
.header-menu-desktop a:focus,
.header-menu-desktop a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-color: #94BF05;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
	background-color: initial !important;
}

.header-menu-desktop a:focus {
    outline: 3px solid #94BF05;
    outline-offset: 2px;
    border-radius: 4px;
}

.header-menu-desktop li {
    position: relative;
}

.header-menu-desktop .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: white;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 180px;
}

.header-menu-desktop .submenu li {
    padding: 0;
}

.header-menu-desktop .submenu a {
    padding: 8px 16px;
    display: block;
    white-space: nowrap;
}

.header-menu-desktop li:hover > .submenu,
.header-menu-desktop li:focus-within > .submenu {
    display: block;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1076px;
    margin: 0 auto;
    flex: 1;
    padding-top: 40px;
}

.padding-x {
    padding-left: 18px;
    padding-right: 18px;
}

.small-padding {
    padding-left: 18px;
    padding-right: 18px;
}

.title-bar {
    background-color: #F6F4EA;
    padding: 8px 18px;
}

.search-form {
    position: relative;
    background-color: #F6F4EA;
    margin-top: 22px;
    border-radius: 4px;
    padding: 16px 36px 16px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-form .full-width {
    grid-column: span 4;
}

.search-form .col-span-2 {
    grid-column: span 2;
}

.search-form .actions {
    display: flex;
    margin-right: -16px;
    justify-content: space-between;
    grid-column: span 4;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-6 {
    gap: 24px;
}

.gap-1 {
    gap: 4px;
}


.section {
    padding-top: 24px;
    margin-bottom: 40px;
}

.section > * + * {
    margin-top: 40px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    -webkit-tap-highlight-color: transparent;
    padding: 4px 8px;
    border-radius: 4px;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #B0B2B4;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .custom-radio {
    border-color: #94BF05;
}

.radio-label input[type="radio"]:checked + .custom-radio::after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #94BF05;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label input[type="radio"]:focus + .custom-radio {
    outline: 2px solid #000;
    box-shadow: 0 0 4px #000;
}

.radio-label:focus-within {
    outline: 2px solid #000000;
    border-radius: 4px;
    width: fit-content;
}

.mt-10 {
    margin-top: 40px;
}

.mt-8 {
    margin-top: 32px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 12px;
}

.mt-2 {
    margin-top: 8px;
}

.mr-2 {
    margin-right: 8px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #B0B2B44D;
}

.dark-divider {
    width: 100%;
    height: 1px;
    background-color: #B0B2B4;
}


.bg-beige {
    background-color: #F6F4EA;
}

.space-y-4 > * + * {
    margin-top: 16px;
}

textarea {
    border: 1px solid #B0B2B4;
    border-radius: 4px;
    padding: 8px;
    max-width: 580px;
    width: 100%;
    font-size: 16px;
    resize: none;
    outline: none;
}

textarea:focus {
    border-color: #666;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

.charCount {
    position: absolute;
    bottom: -14px;
    right: 0;
    font-size: 12px;
    color: #666;
    pointer-events: none; /* Prevent interaction */
}

.textarea-container {
    position: relative;
    display: inline-block;
    max-width: 580px;
    width: 100%;
}

label {
    margin: 0;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
}

.link-icon {
    display: flex;
    align-items: baseline;
}

.input-form {
    appearance: none;
    display: block;
    border: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #B0B2B4;
    cursor: pointer;
}

.input-error {
    box-shadow: 0 0 0 1px #D3273E;
}

.input-error:hover {
    box-shadow: 0 0 0 1px #D3273E;
}

.input-form:hover {
    box-shadow: 0 0 0 1px #333333;
}

.input-form:focus {
    box-shadow: 0 0 0 1px #333333;
}

.input-form::placeholder {
    color: #6E6F70;
}
.input-group {
	position: initial;
	display: initial;
	border-collapse: initial;
}

.input-group > * + * {
    margin-top: 24px;
}

label {
    font-weight: normal;
}
.error-message {
    display: block;
    margin-top: 4px;
    color: #D3273E;
    font-size: 16px;
    line-height: 24px;
}

.content-link {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-link {
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.table-link {
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    text-decoration: none;
    cursor: pointer;
}

.table-link:hover,
.table-link:focus {
    text-decoration: underline;
}

.table-link:focus {
    border: 1px solid #333333;
}

.custom-checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.custom-checkbox input {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #B0B2B4;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin-left: 0;
    margin-right: 0;
    transition: all 0.3s ease;
    outline: none;
    flex-shrink: 0;
}

.custom-checkbox input::after {
    content: "✔";
    font-size: 14px;
    color: #333333;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease-in-out;
}

/* When checked */
.custom-checkbox input:checked {
    background-color: transparent;
}

.custom-checkbox input:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

.custom-checkbox input:focus {
    box-shadow: 0 0 3px rgba(51, 51, 51, 0.6);
    border-color: #333333;
}

.custom-checkbox input:focus-visible {
    outline: 2px solid #333333;
}

.custom-checkbox input:hover {
    border-color: #333333;
}

.custom-checkbox label {
    cursor: pointer;
}

.custom-checkbox a {
    color: #333333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.custom-checkbox a:hover {
    text-decoration: underline;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

fieldset, legend {
    border: none;
    outline: 0;
    padding: 0;
}

.success-button {
    display: block;
    cursor: pointer;
    color: #333333;
    background-color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    border: 2px solid #94BF05;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'CorporateS', sans-serif;
    transition: background-color 0.2s ease-in-out;
}

.success-button:hover {
    box-shadow: 0 0 0 1px #94BF05;
    background-color: rgba(169, 169, 169, 0.1); /* hover:bg-gray/10 */
}

.fixed-padding {
    padding: 0 18px;
}

.right {
    float: right;
}

.info-box {
    background-color: #F6F4EA;
    border-left: 4px solid #94BF05;
    padding: 0.75rem;
    display: flex;
    gap: 8px;
    align-items: baseline;
    border-radius: 4px;
}

.info-box svg {
    flex-shrink: 0;
}

input[type="radio"] {
    transform: scale(1.2);
    cursor: pointer;
}

.mobile-label {
    display: none;
}

.login-form {
    width: 100%;
    max-width: 400px;
    margin: 32px auto;
}

.login-form button {
    font-family: 'CorporateS', sans-serif;
    width: 100%;
}

.success-notice {
    padding: 12px;
    margin: 20px 0;
    background-color: rgba(148, 191, 5, 0.1);
    border-radius: 4px;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

.success-notice a {
    color: #333333;
    text-decoration: underline;
}

.info-notice {
    background-color: #F6F4EA;
    padding: 12px;
    display: flex;
    gap: 8px;
    align-items: baseline;
    border-radius: 4px;
}

.info-notice p {
    font-size: 16px;
    line-height: 24px;
}

.info-notice svg {
    flex-shrink: 0;
}

.exception-notice {
    padding: 12px;
    margin: 20px 0;
    background-color: rgba(197, 48, 48, 0.1);
    border-radius: 4px;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    display: flex;
    gap: 8px;
    align-items: center;
}

.exception-notice-regular {
    padding: 12px;
    background-color: rgba(197, 48, 48, 0.1);
    border-radius: 4px;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    display: flex;
    gap: 8px;
    align-items: center;
}

.exception-notice svg {
    flex-shrink: 0;
}

.custom-select {
    font-family: 'CorporateS', sans-serif;
    position: relative;
    width: 100%;
}

.select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #B0B2B4;
    border-radius: 4px;
    padding: 12px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}

.selected-value {
    text-overflow: ellipsis;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    line-height: 22px;
    outline: none;
}

.arrow {
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.custom-select.active .arrow {
    transform: rotate(135deg);
    border-left: 2px solid rgba(148, 191, 5, 1);
    border-bottom: 2px solid rgba(148, 191, 5, 1);

}

select:focus, .select-header:focus {
    outline: 2px solid #333333;
}

.select-options {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #B0B2B4;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 4px;
    padding-bottom: 5px;
}

.custom-select.active .select-options {
    display: block;
}

.search-container {
    padding: 12px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 10px; /* Adjust right padding for the icon */
    border: 1px solid #B0B2B4;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    background: url('/img/magnifying.png') no-repeat;
    background-size: 18px;
    background-position: right 10px center;
    background-color: #fff;
    outline: none;
}

.custom-select input {
    font-family: 'CorporateS', sans-serif;
}

.option {
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    padding: 12px;
}

.option:hover {
    background-color: rgba(148, 191, 5, 0.1);
}

select {
    width: fit-content;
    min-width: 80px;
    background-color: white;
    padding: 12px;
    border: 1px solid #B0B2B4;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: ellipsis;
    position: relative;
}

.select-wrapper {
    position: relative;
}

.custom-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    pointer-events: none;
}

.pagination {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 18px;
}

.pagination span {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.pagination a {
    text-decoration: none;
    color: #333333;
    font-size: 22px;
}

.alphabet-list {
    overflow-x: auto;
    display: flex;
    gap: 12px;
    padding-bottom: 10px;
    list-style: none;
}

.alphabet-list button,
.alphabet-list li {
    padding: 4px 10px;
    background-color: #fff;
    border: 1px solid rgba(176, 178, 180, 1);
    text-align: center;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.alphabet-list li a {
	color: #000000;
}

.alphabet-list button.active,
.alphabet-list li.active {
    color: #6E6F70;
    border: 1px solid rgba(148, 191, 5, 1);
    border-bottom: 4px solid rgba(148, 191, 5, 1); /* Increase the border-bottom thickness */
}

.alphabet-list button:hover,
.alphabet-list li:hover {
    background-color: #f0f0f0;
}

.table-container {
    width: 100%;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.result-table th,
.result-table td {
    text-align: left;
}

.result-table th {
    background: #F6F4EA;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    padding: 12px 16px;
    color: #333;
}

.result-table td {
    font-size: 18px;
    line-height: 24px;
    padding: 24px 16px;
    color: #333;
}

.result-table tbody tr {
    border-bottom: 1px solid #DCDDDD;
}

.col-wide {
    width: 55%;
}

.col-medium {
    width: 30%;
}

.col-narrow {
    width: 15%;
}

.tab-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tab-container {
}

.tab-nav {
    overflow-x: auto;
    overflow-y: clip;
    display: flex;
    border-bottom: 1px solid #B0B2B4;
    gap: 32px;
}

.tab-label {
    display: inline-block;
    padding: 10px 0;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    cursor: pointer;
    margin-bottom: -1px;
    transition: background-color 0.3s;
}

.tab-content {
    display: none;
}

#tabBasisdaten:checked ~ .tab-container #contentBasisdaten,
#tabAnalytik:checked ~ .tab-container #contentAnalytik,
#tabDetail:checked ~ .tab-container #contentDetail,
#tabIndikationen:checked ~ .tab-container #contentIndikationen ,
#tabDokumente:checked ~ .tab-container #contentDokumente {
    display: block;
}

#tabBasisdaten:checked ~ .tab-container .tab-label[for="tabBasisdaten"],
#tabAnalytik:checked ~ .tab-container .tab-label[for="tabAnalytik"],
#tabDetail:checked ~ .tab-container .tab-label[for="tabDetail"],
#tabIndikationen:checked ~ .tab-container .tab-label[for="tabIndikationen"],
#tabDokumente:checked ~ .tab-container .tab-label[for="tabDokumente"] {
    border-bottom: 4px solid #94BF05;
}

.tab-label:hover {
    border-bottom: 4px solid #94BF05;
}

.detail-container {
    display: flex;
    gap: 38px;
    margin-top: 16px;
    flex-direction: row;
}

.detail-box {
    margin-top: 4px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #B0B2B44D;
    padding: 14px 12px 12px;
    font-size: 16px;
    line-height: 18px;
    min-height: 46px;
}

.detail-item {
    font-size: 16px;
    color: #333333;
    font-family: 'CorporateS', sans-serif;
    flex: 1;
}

.info-list {
    list-style: none;
    padding-bottom: 50px;
}

.info-list li {
    position: relative;
    padding-left: 15px;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 12px;
}

.info-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #94BF05;
    border-radius: 0;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.details-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #B0B2B4;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.item-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.item-list .item-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.item-list .media {
    margin-top: 8px;
    column-span: 2;
    max-width: 100%;
    max-height: 110px;
}

.media img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.folder {
    position: relative;
    padding-left: 30px;
    color: #333333;
    font-size: 18px;
    line-height: 28px;
}

.folder::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='20' viewBox='0 0 24 20'%3E%3Cpath id='folder' d='M21.669,11l-1.385,9H3.716L2.331,11H21.669ZM7.972,2H1l.714,5H3.735L3.306,4H7a4.5,4.5,0,0,0,4.277,2H20.56l-.2,1H22.4L23,4H11.277C9.3,4,9.236,3.583,7.972,2ZM24,9H0L2,22H22Z' transform='translate(0 -2)' fill='%236e6f70'/%3E%3C/svg%3E");    background-size: contain;
    background-repeat: no-repeat;
}



.download-link {
    position: relative;
    padding-left: 30px;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
}

.download-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g transform="translate(-270 -417)"><rect width="24" height="24" transform="translate(270 417)" fill="none"/><path d="M11.362,2C15.518,2,14,8,14,8s6-1.65,6,2.457V22H4V2h7.362Zm.827-2H2V24H22V9.614C22,7.223,15.352,0,12.189,0ZM17,13H7V12H17Zm0,2H7v1H17Zm-3,3H7v1h7Z" transform="translate(270 417)" fill="%236e6f70"/></g></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.download-list {
    margin-top: 16px;
    list-style: none;
    padding-left: 35px;
}

.download-list li {
    margin-bottom: 16px;
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;

}

.document-table th,
.document-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #B0B2B44D;
}

.document-table th {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
}

.document-table tbody tr:hover {
    background-color: rgba(246, 244, 234, 0.1);
}

.no-documents {
    font-size: 16px;
    text-align: left;
    color: #6E6F70;
    padding: 20px;
}

@media (max-width: 768px) {
    .item-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .item-list .item-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .detail-container {
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

    .search-form {
        padding: 16px;
    }

    .search-form .actions {
        display: flex;
        margin-right: 0;
        flex-direction: column;
        grid-column: span 1;
        gap: 24px;
    }

    textarea {
        max-width: 100%;
    }

    .success-button {
        width: 100%;
    }

    .center-container {
        width: 100%;
    }

    .flex {
        justify-content: space-between;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-menu {
        display: block!important;
    }

    .header-menu {
        display: none;
    }

    .header-menu .submenu {
        display: none;
        padding-left: 16px;
    }

    .header-menu .submenu a {
        padding: 8px 16px;
    }

    .header-menu .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px;
        font-size: 18px;
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
    }

    .header-menu .submenu-toggle svg.icon-arrow {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    /* Rotate icon when expanded */
    .header-menu .submenu-toggle[aria-expanded="true"] svg.icon-arrow {
        transform: rotate(90deg); /* Arrow now points down */
    }

    .header-menu .submenu-toggle[aria-expanded="true"] + .submenu {
        display: block;
    }

    .header-menu-desktop {
        display: none;
    }

    .search-form {
        grid-template-columns: 1fr;
    }
    .search-form .full-width,
    .search-form .col-span-2 {
        grid-column: span 1;
    }

    .result-table thead {
        display: none;
    }
    .result-table,
    .result-table tbody,
    .result-table tr,
    .result-table th,
    .result-table td {
        display: block;
        width: 100%;
    }

    .result-table tr {
        margin-bottom: 8px;
    }

    .result-table td {
        border: none;
        position: relative;
        padding-left: 30%;
    }

    .result-table th::before,
    .result-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        width: 35%;
        font-size: 16px;
        font-weight: 700;
        color: #333333;
    }

    .col-wide,
    .col-medium,
    .col-narrow {
        width: 100%;
    }

    .col-wide {
        background-color: #F6F4EA;
    }
}

@media (max-width: 480px) {
    .header-bar {
        gap: 4px;
    }

    .footer-contact {
        margin-top: 16px;
        margin-bottom: 16px;
        flex-direction: column;
    }

    .footer-contact span {
        display: none;
    }
}

@media (min-width: 1360px) {
    .padding-x {
        padding-left: 40px;
        padding-right: 40px;
    }

    .small-padding {
        padding-left: 0;
        padding-right: 0;
    }

    .copy-right, .footer-content {
        padding-right: 0;
        padding-left: 0;
    }

    .fixed-padding {
        padding: 0;
    }

    .title-bar  {
        padding: 8px 40px !important;
    }

    .section-container {
        width: 1280px;
    }

    .detail-container {
        padding: 0 40px !important;
    }
}

