/* CSV Search Table Plugin - Clean & Minimal Styles */

.cst-wrapper {
    width: 100%;
    font-family: inherit;
    color: inherit;
}

/* Search Bar */
.cst-search-bar {
    margin-bottom: 16px;
}

#cst-search-input {
    width: 100%;
    max-width: 400px;
    padding: 9px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

#cst-search-input:focus {
    border-color: #555;
}

/* Table Container */
.cst-table-container {
    width: 100%;
    overflow-x: auto;
}

/* Table */
.cst-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    text-align: left;
}

.cst-table thead th {
    padding: 10px 14px;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
    white-space: nowrap;
}

.cst-table tbody td {
    padding: 9px 14px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.cst-table tbody tr:last-child td {
    border-bottom: none;
}

.cst-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Hidden rows during search */
.cst-table tbody tr.cst-hidden {
    display: none;
}

/* No results message */
.cst-no-results {
    margin-top: 12px;
    color: #666;
    font-style: italic;
}

/* Row count */
.cst-row-count {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

/* Error message */
.cst-error {
    color: #c0392b;
    background: #fdf0ef;
    border: 1px solid #f5c6c2;
    border-radius: 4px;
    padding: 10px 14px;
}
