﻿.hidden_column {
    display: none;
}

.committee_place_holder {
    border: 2px solid black;
    border-radius: 10px;
    background-color: white;
    width: 250px;
    /*    height: 100px;*/
    /*margin-bottom: 20px;*/
    margin: 10px auto;
    transition: .3s;
}

    .committee_place_holder:hover {
        /*border: 2px dashed #c20b3a;*/
        /*color: #c20b3a;*/
        /*text-shadow: 1px 2px #c20b3a;*/
        border-radius: 0px;
    }

        .committee_place_holder:hover .committee_name {
            border-radius: 0px;
            /*color: black;*/
            background-color: #c20b3a;
        }

.committee_name {
    border-bottom: 1px solid black;
    padding: 5px;
    background-color: #001b56;
    border-radius: 5px 5px 0px 0px;
    color: white;
    height: 25px;
    text-align: center;
    white-space: nowrap;
    transition: border-radius.3s, background-color .3s;
}

.data_container {
    /*border: 1px solid black;*/
    padding: 10px;
    margin: auto;
    /*    max-height: 600px;*/
}

.filter_container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0px auto 20px auto;
}

.filter_item {
    flex: 1;
    min-width: 200px;
}

    .filter_item span {
        margin-bottom: 5px;
        font-size: 12pt;
        /*        color: #555;*/
    }

    .filter_item select {
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #fff;
        font-size: 16px;
        color: #333;
        outline: none;
        width: 100%;
    }

.filter_search_container {
    display: flex;
    border: 2px solid #002b54;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
}

.search_box {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
}

.search_button {
    /*    background: #ddd;
    vertical-align: middle;*/
    height: 24px;
    width: 24px;
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.2s;
}

    .search_button:hover {
        transform: scale(1.1);
    }

.data_body {
    /*    margin-top: 25px;*/
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    align-items: stretch;
    width: 100%;
    padding: 10px 0;
}

    .data_body > tbody > tr > td {
        /*    text-align: center;*/
        padding-left: 40px;
    }

.splt_data_list {
    width: 100%;
    table-layout: fixed;
}

    .splt_data_list td {
        width: 50%;
    }

.data_detail {
    /*    margin: 0;
    padding: 15px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);*/
    max-width: 500px;
    /*width: 100%;
    text-align: left;
    background-color: #fbfbfb;
    box-sizing: border-box;*/

    display: flex;
    flex-direction: column; /* Stacks inner content vertically */
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #e0e0e0; /* Softer border */
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    box-sizing: border-box;
    width: 100%; /* Let the parent grid dictate the width, remove max-width */
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease
}

.data_detail_p {
    display: flex;
    flex-direction: row;
    gap: 15px; /* Replaces right margins */
    align-items: center; /* Vertically centers the text with the image */
    margin-bottom: 15px;
}

.data_detail:hover {
    /*        cursor: pointer;
            border: 1px solid #666666;
            transition: .5s;*/

    cursor: pointer;
    transform: translateY(-4px); /* Gently lifts the card up */
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); /* Deepens the shadow */
    border-color: #b9953d;
}

.data_detail_picture {
    /*        width: 20%;
        margin-right: 20px;*/
    /*    margin-right: 10px;
    text-align: center;*/

    flex-shrink: 0;
}

    .data_detail_picture img {
        /*        width: 80px;
        height: 120px;
        border: 2px solid #323232;
        border-radius: 3px 3px;*/

        width: 80px;
        height: 120px;
        object-fit: cover; /* Ensures images don't stretch weirdly */
        border: 1px solid #cccccc; /* Softer border than the heavy #323232 */
        border-radius: 4px;
    }

.data_detail_text {
    /*            width: 100%;*/
    flex-grow: 1;
}

.data_detail_name {
    font-size: 16pt;
    font-weight: bold;
    border-bottom: 2px solid #d8d8d8;
    margin-bottom: 5px;
    /* === NEW TWO-LINE CUTOFF STYLES START HERE === */
    display: -webkit-box; /* 1. Enables the -webkit properties */
    -webkit-line-clamp: 2; /* 2. The core property: limits text to 2 lines */
    -webkit-box-orient: vertical; /* 3. Stacks content vertically */
    overflow: hidden; /* 4. Hides the overflow */
}

.data_detail table {
    width: 100%;
    /*            table-layout: fixed;*/
}

.data_detail tr {
    background-color: transparent !important;
    height: 25px;
}

.data_detail td {
    padding: 5px 0px 5px 0px;
}

    .data_detail td:nth-of-type(2n+1) {
        color: #191919;
        font-size: 12pt;
        font-weight: 600;
    }

    .data_detail td:nth-of-type(2n) {
        font-family: 'Roboto Mono', monospace;
        text-align: center;
        font-size: 13pt;
    }

.data_table tr:not(:first-child):not(.table_pager):hover {
    cursor: pointer;
    /*font-weight: bold;*/
    background-color: yellow !important;
    border-bottom: 2px solid black;
    transition: .3s linear;
}

.data_table > tbody > tr > td:first-child:not(td:has(> table)) {
    display: none;
}

.data_table th:first-child {
    display: none;
}

.data_table_selected_row {
    background-color: yellow;
}

.topic_tags {
    /*    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;*/
    display: block;
    width: 100%;
}

.tag {
    background-color: #f0f4f8; /* Very light Navy tint */
    color: #002b54;
    border: 1px solid rgba(0, 43, 84, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.pagination_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
}

.pagination_button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
    color: #002b54; /* Institutional Navy */
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

    .pagination_button:hover {
        border-color: #002b54;
        background-color: #f0f4f8;
    }

.page_label {
    font-size: 18pt;
    font-weight: bold;
    /*    color: #757575;*/
    margin: 0 15px;
}

.system-identity {
    font-family: 'Roboto Mono', 'Consolas', monospace; /* The "Terminal" look */
    font-size: 0.75rem; /* Small and discrete */
    color: rgba(255, 255, 255, 0.5); /* Faded white so it doesn't distract */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2); /* Subtle dark background pill */
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.software-name {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #b8860b; /* Gold accent for the Ohio Identity */
}

.version-tag {
    color: #a0aec0; /* Cool gray */
}

/* The "Live" Status Dot */
.status-indicator {
    width: 6px;
    height: 6px;
    background-color: #4caf50; /* Green */
    border-radius: 50%;
    box-shadow: 0 0 5px #4caf50; /* Glowing effect */
    animation: pulse 2s infinite;
}
