/* -------------------------------
   Filter Form
--------------------------------- */
#investor-lookup-fields {
    margin-bottom: 40px;
    background: #f0f0f0;
    border: 1px solid #0067A6;
    border-top-width: 5px;
    padding: 20px;
}

#investor-lookup-fields form {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
}
@media only screen and (max-width: 747px) {
    #investor-lookup-fields form {
        flex-wrap: wrap;
    }
}

#investor-lookup-fields form input[type="text"],
#investor-lookup-fields form select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    height: 40px;
}

#investor-lookup-fields .form-field {
    display: block;
}
#investor-lookup-fields .form-field label {
    color: #1d242d !important;
    margin-bottom: 8px;
}

#investor-lookup-fields form button {
    padding: 10px 20px;
    background-color: #0067A6; /* Blue button */
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.2s;
    border-bottom: 5px solid #0067A6;
    width: 100%;
    max-width: 160px;
    height: 50px;
}

#investor-lookup-fields form button:hover {
    background-color: #005999;
    border-bottom: 5px solid #00B193;
}

/* -------------------------------
   Table
--------------------------------- */
#sec-filings-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

#sec-filings-table-wrapper th,
#sec-filings-table-wrapper td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

#sec-filings-table-wrapper th {
    background-color: #f0f0f0;
    font-weight: 600;
}

#sec-filings-table-wrapper tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Document icons */
#sec-filings-table-wrapper td a {
    margin-right: 5px;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    vertical-align: middle;
}

#sec-filings-table-wrapper td a.document-type-rtf::before {
    content: url('https://www.chpk.com/wp-content/uploads/2021/03/icon_RTF.svg');
    margin-right: 3px;
}

#sec-filings-table-wrapper td a.document-type-pdf::before {
    content: url('https://www.chpk.com/wp-content/uploads/2021/03/icon_PDF.svg');
    margin-right: 3px;
}

#sec-filings-table-wrapper td a.document-type-xls::before {
    content: url('https://www.chpk.com/wp-content/uploads/2021/03/icon_XLS.svg');
    margin-right: 3px;
}

/* -------------------------------
   Pagination
--------------------------------- */
.sec-filings-pagination {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sec-filings-pagination a {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: #14274a;
    transition: background-color 0.2s, color 0.2s;
}

.sec-filings-pagination a:hover {
    color: #0067A6;
}

.sec-filings-pagination strong {
    padding: 10px 18px 0px 18px;
    border: 1px solid #14274a;
    border-radius: 100em;
    background-color: #14274a;
    color: #fff;
}
