/* Province Filter Styles */
.province-input-container {
    margin-bottom: 10px;
}

.province-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: white;
}

.province-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* Province Results Styles */
.province-results {
    max-height: 200px;
    overflow-y: auto;
}

.province-results ul {
    margin: 0;
    padding-left: 20px;
    font-size: 11px;
    line-height: 1.3;
    list-style-type: decimal;
}

.province-results ol {
    margin: 0;
    padding-left: 20px;
    font-size: 11px;
    line-height: 1.3;
}

.province-results li {
    margin-bottom: 2px;
    color: #333;
}

.province-results li span.capacity {
    color: #666;
    font-weight: 500;
    font-size: 10px;
}

.province-results .project-list-container {
    margin-top: 8px;
    max-height: 150px;
    overflow-y: auto;
    border-top: 1px solid #eee;
    padding-top: 8px;
}

.province-results .project-list-title {
    font-size: 10px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 600;
}

/* Clear Button Styles */
.province-results button {
    margin-left: 10px;
    padding: 4px 8px;
    font-size: 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.province-results button:hover {
    background: #c82333;
}

.province-results button:active {
    background: #a02622;
}
