@charset "UTF-8";
@font-face {
    font-family: "JosefinSans-Light";
    src: url(../fonts/JosefinSans-Light.ttf);
    font-display: block;
    font-display: swap;
}
@font-face {
    font-family: "JosefinSans-Medium";
    src: url(../fonts/JosefinSans-Medium.ttf);
    font-display: block;
}
@font-face {
    font-family: "JosefinSans-Regular";
    src: url(../fonts/JosefinSans-Regular.ttf);
    font-display: block;
}
@font-face {
    font-family: "JosefinSans-Bold";
    src: url(../fonts/JosefinSans-Bold.ttf);
    font-display: block;
    font-display: swap;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e3f6f5;
    z-index: 1000;
}

.header-title {
    font-size: 26px;
    color: black;
    font-family: "JosefinSans-Bold";
    margin: 16px auto;
    text-align: center;
    text-decoration: none;
    display: block;
}

.container {
    max-width: 1400px;  
    padding: 96px 32px;
    margin: 0 auto;
}

.admin-link a {
    color: #272343;
    text-decoration: none;
}
* {
    font-family: "JosefinSans-Regular";
}

.h2 {
    font-size: 26px;
}

.h3 {
    font-size: 20px;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
    width: 100%;
}

.search-container input {
    width: 100%;
    padding: 16px;
    border: 3px solid #272343;
    border-radius: 4px;
    font-size: 20px;
}

.id-image img {
    width: 300px;
    height: auto;
    border-radius: 4px;
}

.search-results-dropdown {
    display: none;
    width: 100%;
    border: 1px solid #ccc;
    font-size: 16px;
}

.search-result-item {
    cursor: pointer;
    padding: 16px;
}

#details-container {
    width: 100%;
}

.acf-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.acf-details .section {
    border: 3px solid #272343;
    border-radius: 4px;
    padding: 16px;
    width: calc(33% - 7px);
}

.acf-details .section .h2 {
    margin-bottom: 16px;
    padding: 8px;
        background-color: #e3f6f5;
        border-radius: 4px;
}

.acf-details .section p {
    margin-bottom: 8px;
}

.id-images-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.id-image {
    width: 48%;
}

.id-image img {
    width: 100%;
    height: auto;
}

.subsection {
    margin-bottom: 16px;
}

.subsection .h3 {
    margin-bottom: 8px;
}

.subsection p a {
    color: #272343;
        display: flex;
        align-items: center;
    }
    
    
    .subsection p a .pdf-icon {
        margin-right: 8px;
        width: 24px;
        height: 24px;
}

.search-result-item.selected {
    background-color: lightblue;
    cursor: pointer;
}
.documents {
    width: 100% !important;
}