
.table-search-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
	margin-bottom: 10px;
}

.table-search-label {
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
}

.table-search-input {
    flex: 1;
    min-width: 200px;
    padding: 8px 35px 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out;
}

.table-search-input:focus {
    outline: none;
    border-color: #80bdff;
}

.table-search-results {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
    margin-left: 5px;
}

.table-search-clear {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.table-search-clear:hover {
    color: #dc3545;
}

.table-search-highlight {
    background-color: #fff3cd;
    padding: 1px 3px;
    border-radius: 2px;
    font-weight: bold;
}