/* Black Homesteader Search Styles */
.bhs-search-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.bhs-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.bhs-form-group {
    flex: 1;
    min-width: 200px;
}

.bhs-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.bhs-form-group input,
.bhs-form-group select {
    width: 90%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.bhs-form-group input:focus,
.bhs-form-group select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.bhs-submit-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#bhs-search-submit,
#bhs-reset-form {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

#bhs-search-submit {
    display: flex;
    background: #007cba;
    color: white;
}

#bhs-search-submit  svg{
   margin-right:10px;
}

#bhs-search-submit:hover {
    background: #005a87;
}

#bhs-reset-form {
    background: #6c757d;
    color: white;
}

#bhs-reset-form:hover {
    background: #545b62;
}

.bhs-search-results {
    margin-top: 30px;
	overflow: scroll;
}

.bhs-loading {
    text-align: center;
    padding: 20px;
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 4px;
    color: #0066cc;
}

.bhs-results-count {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-weight: 600;
}

.bhs-results-table {
    width: 2200px;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.bhs-results-table th {
    background: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
}

.bhs-results-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.bhs-results-table tr:hover {
    background: #f8f9fa;
}

.bhs-no-results,
.bhs-initial-message {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 30px !important;
}

.bhs-record-link {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    display: inline-block;
}

.bhs-record-link:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bhs-form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .bhs-form-group {
        min-width: 100%;
    }
    
    .bhs-results-table {
        font-size: 12px;
    }
    
    .bhs-results-table th,
    .bhs-results-table td {
        padding: 6px 8px;
    }
}