.hp-sources {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background-color: #f8f9fa !important;
    min-height: 100vh !important;
    box-sizing: border-box !important;
    font-size: 16px;
    line-height: 1.5;
    color: #1a1e21;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 15px;
    font-size: 14px;
}

.breadcrumbs a {
    color: #004466;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Page Header */
.hp-page-header {
    background: #5c5c5c;
    color: white;
    padding: 15px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
}

.hp-page-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: white;
}

.hp-page-header .count {
    color: #e0e0e0;
    font-size: 16px;
}

/* Tree Filter */
.hp-tree-filter {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    margin-bottom: 20px;
}

.hp-tree-filter .filter-label {
    font-weight: 500;
    margin-right: 15px;
    color: #333;
}

.hp-tree-filter .tree-btn {
    display: inline-block;
    padding: 6px 12px;
    margin-right: 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    background: #f0f0f0;
    color: #333;
}

.hp-tree-filter .tree-btn.active {
    background: #004466;
    color: white;
    font-weight: 600;
}

/* Search Section */
.hp-search-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-search-section .search-form {
    display: flex;
    gap: 10px;
}

.hp-search-section .search-input {
    width: 250px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.hp-search-section .per-page-select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.hp-search-section .search-btn {
    padding: 10px 20px;
    background: #004466;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.hp-search-section .search-btn:hover {
    background: #003355;
}

.hp-search-section .clear-btn {
    padding: 10px 20px;
    background: #666;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
}

.hp-search-section .clear-btn:hover {
    background: #555;
}

.hp-search-section .showing-info {
    color: #666;
    font-size: 14px;
}

/* Sources List */
.hp-sources-list {
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    overflow: hidden;
}

.hp-sources-list .source-item {
    padding: 15px 20px;
    border-bottom: 1px solid #e1e5e9;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-sources-list .source-item:last-child {
    border-bottom: none;
}

.hp-sources-list .source-item:hover {
    background: #f8f9fa;
}

.hp-sources-list .source-item a {
    color: #004466;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.hp-sources-list .source-item a:hover {
    color: white;
    background: #007cba;
    padding: 2px 4px;
    border-radius: 3px;
}

.hp-sources-list .individual-count {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.hp-sources-list .empty-state {
    padding: 40px;
    text-align: center;
    color: #666;
}

/* Pagination */
.hp-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.hp-pagination .page-link {
    padding: 8px 16px;
    background: #004466;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.hp-pagination .page-link:hover {
    background: #003355;
}

.hp-pagination .page-info {
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 4px;
}
