/* search results display properties */

.full_display {
    display: flex;
    min-width: 0; /* add this to the flex container to make text truncation work */
    border-style: none;
    border-color: var(--secondary_matching_color);
    border-top: none;
    border-left: none;
    border-right: none;
    border-width: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.full_display_section_image_small {
    flex: 1;
    padding-left: 15px;
    padding-right: 15px;
    /*truncate text*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.full_display_section {
    flex: 2;
    padding-left: 15px;
    padding-right: 15px;
    border-style: solid;
    border-color: var(--secondary_matching_color);
    border-width: 1px;
    border-top: none;
    border-left: none;
    border-right: none;
    /*truncate text*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list_view_link {
    text-decoration: none;
}

.full_display_section_word_wrapped {
    flex: 2;
    padding-left: 15px;
    padding-right: 15px;
    word-wrap: break-word;
}

.full_display_section_image_small img {
    width: 100px;
    /*max-height: 91px;*/
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-style: solid;
    border-color: var(--secondary_matching_color);
    border-width: 1px;
}

.page_navigation_section {
    display: flex;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary_border_color_1);
    margin-top: 5px;
}

.nav_back_section {
    flex: 1;
}

.current_page_index {
    flex: 1;
    /*
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary_border_color_1);
    */
}

.nav_next_section {
    flex: 1;
}

.center_link {
    display: block;
    text-align: center;
}

.center_link a {
    text-decoration: none;
}

.center_link_blank {
    text-align: center;
    background-color: var(--primary_text_color_1);
    color: var(--primary_text_color_1);
}

.center_display {
    text-align: center;
}

.line_display_link {
    display: block;
    color: var(--primary_text_color_1);
    text-align: center;
    text-decoration: none;
    background-color: var(--secondary_matching_color);
    padding-top: 3px;
    padding-bottom: 3px;
}

@media (max-width: 1280px) {
    .full_display {
        display: block;
    }
    .full_display_section_image_small {
        display: block;
    }
    .full_display_section_image_small img {
        display: block;
        width: 20%;
        /*max-height: 240px;*/
        margin-left: auto;
        margin-right: auto;
    }
    .full_display_section {
        display: block;
        border: none;
        text-align: center;
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }
    .full_display_section p {
        margin-top: 1px;
        margin-bottom: 1px;
    }
    .full_display_section_word_wrapped {
        display: block;
        text-align: center;
        width: 80%;
        margin-right: auto;
        margin-left: auto;
        border-style: solid;
        border-color: var(--secondary_matching_color);
        border-width: 1px;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .full_display_section_word_wrapped p {
        margin-top: 0;
        margin-bottom: 1px;
    }
}

@media (max-width: 1280px) {
    .page_navigation_section {
        width: 30%;
    }
}

@media (max-width: 900px) {
    .page_navigation_section {
        width: 35%;
    }
    .full_display_section_image_small img {
        width: 25%;
    }
}

/* search results display properties */