* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow-x: hidden;
    overflow-y: visible;
}

header {
    background: white;
    color: #333;
    padding: 15px 25px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    font-size: 1.5em;
    margin: 0;
    font-weight: 700;
    color: #667eea;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.9;
}

.filters-section {
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
}

.search-box button, .filters-row button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.search-box button:hover, .filters-row button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.search-box button:active, .filters-row button:active {
    transform: translateY(0);
}

.filters-row {
    display: grid;
    grid-template-columns: 150px 200px auto auto auto 100px 80px;
    gap: 15px;
    align-items: center;
}

.filters-row select, .range-filter input {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.filters-row select:focus, .range-filter input:focus {
    outline: none;
    border-color: #667eea;
}

.range-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.range-filter label {
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.range-filter input {
    flex: 1;
    min-width: 80px;
}

.range-filter span {
    color: #999;
    font-weight: bold;
}

button.secondary {
    background: #6c757d !important;
}

button.secondary:hover {
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4) !important;
}

.stats {
    padding: 15px 25px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.stats-left {
    flex-shrink: 0;
}

.stats strong {
    color: #667eea;
    font-size: 1.1em;
}

.table-container {
    overflow-x: auto;
    max-height: 600px;
}

.table-wrapper {
    overflow-x: auto;
    background: white;
}

.blogger-table {
    width: 100%;
    border-collapse: collapse;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 10;
}

thead th {
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e0e0e0;
    white-space: nowrap;
}

thead th.align-right {
    text-align: right;
}

thead th.metric-header {
    text-align: left;
    vertical-align: top;
    color: #444;
    padding-top: 16px;
    line-height: 1.3;
}

thead th.metric-header span {
    display: block;
}

/* Metric combined cell */
.metric-cell {
    text-align: left;
    padding: 14px 10px 12px;
    vertical-align: top;
}

.metric-cell .metric-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    color: #444;
    font-size: 13px;
}

.metric-cell .metric-item + .metric-item {
    margin-top: 4px;
}

.metric-cell .metric-label {
    color: #888;
    position: relative;
    padding-right: 2px;
}

.metric-cell .metric-label::after {
    content: '：';
    color: #bbb;
    margin-left: 2px;
}

.metric-cell .metric-label.strong {
    color: #333;
    font-weight: 600;
}

.metric-cell .metric-value {
    font-weight: 600;
    color: #333;
}

.metric-cell.cpm-cell .metric-value {
    color: #d9822b;
}

.metric-cell.cpe-cell .metric-value {
    color: #1d976c;
}

.metric-cell.data-metric-cell .metric-value {
    color: #2c3e50;
}

.metric-cell[data-tooltip] {
    position: relative;
    cursor: help;
}

.metric-cell[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(33, 33, 33, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: pre-line;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 20;
}

.metric-cell[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    top: 90%;
    left: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(33, 33, 33, 0.9);
    z-index: 21;
}

th.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

th.sortable:hover {
    background-color: #e9ecef;
}

.sort-arrow {
    margin-left: 5px;
    color: #667eea;
    font-weight: bold;
}

tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s;
}

.loading, .error, .no-data {
    text-align: center;
    padding: 40px !important;
    color: #999;
    font-size: 16px;
}

.error {
    color: #dc3545;
}

/* Blogger Table Styles */
.blogger-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-details {
    flex: 1;
    min-width: 0;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.profile-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.profile-name-link {
    text-decoration: none;
    color: inherit;
}

.profile-name-link:hover {
    text-decoration: underline;
    color: #667eea;
}

.blogger-profile a {
    text-decoration: none;
}

.profile-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.profile-tag-wrapper {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.profile-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.profile-tag-feature {
    background: #e3f2fd;
    color: #1976d2;
}

.blogger-info-cell {
    padding: 15px 10px !important;
}

.number-cell {
    text-align: left;
    padding-left: 10px;
}

.price-cell {
    text-align: right;
    padding: 15px 10px !important;
    font-weight: 600;
    color: #333;
}

.text-cell {
    text-align: left;
    padding: 15px 10px !important;
    white-space: nowrap;
}

.action-cell {
    text-align: center;
    padding: 15px 10px !important;
    width: 120px;
}

.action-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #c82333;
}

/* Card Styles */
.data-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.data-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.data-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #667eea;
    transform: translateY(-2px);
}

.card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.card-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.gender-icon {
    font-size: 16px;
}

.gender-icon.male {
    color: #4285f4;
}

.gender-icon.female {
    color: #ea4335;
}

.health-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #34a853;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.card-region {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.card-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.card-stats-row {
    margin-top: 8px;
}

.stat-text {
    font-size: 13px;
    color: #666;
}

.card-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #999;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.pagination {
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
}

.pagination button {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination button:not(:disabled):hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination #pageInput {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
}

.pagination span {
    margin: 0 10px;
}

/* Windowed page numbers */
.page-numbers {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.page-numbers button {
    padding: 6px 10px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    min-width: 40px;
}

.page-numbers button.active,
.page-numbers button:disabled.active {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
    cursor: default;
}

.page-numbers .ellipsis {
    color: #999;
    padding: 0 4px;
}

/* 购物车样式 */
.cart-section {
    margin: 0 25px;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 65px;
    z-index: 99;
}

.cart-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cart-header:hover {
    background-color: #f8f9fa;
}

.cart-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cart-arrow {
    margin-left: 5px;
    font-size: 12px;
    color: #999;
}

.cart-submit-btn {
    padding: 8px 20px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.cart-submit-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.cart-items {
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-horizontal {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin: 5px 10px 5px 0;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.cart-item-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.cart-item-type {
    font-size: 12px;
    color: #666;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 600;
    color: #dc3545;
    margin-right: 40px;
}

.cart-item-remove {
    margin-left: 8px;
    width: 18px;
    height: 18px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.cart-item-remove:hover {
    background: #e9ecef;
    color: #dc3545;
}

.cart-footer {
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cart-submit-btn-large {
    padding: 12px 40px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.cart-submit-btn-large:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.cart-clear-btn {
    padding: 12px 26px;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.cart-clear-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.checkbox-list {
    max-height: 260px;
    overflow-y: auto;
    padding: 10px 15px;
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .filters-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .container {
        margin: 10px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .filters-section {
        padding: 15px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
    }
    
    table {
        font-size: 14px;
    }
    
    thead th, tbody td {
        padding: 8px 5px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Avatar Styles */
.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Column Settings Panel */
.column-settings-panel {
    position: absolute;
    background: white;
    border: 2px solid #667eea;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 1000;
    max-width: 400px;
}

.column-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.column-settings-header h3 {
    margin: 0;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.close-btn:hover {
    color: #667eea;
}

.column-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.column-checkboxes label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.column-checkboxes input[type='checkbox'] {
    margin-right: 8px;
}

.column-settings-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #e0e0e0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
}

.modal-body {
    padding: 20px;
}

.detail-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.detail-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.detail-group {
    margin-bottom: 25px;
}

.detail-group h3 {
    color: #667eea;
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.detail-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    font-weight: 600;
    color: #555;
    min-width: 150px;
}

.detail-value {
    color: #333;
    flex: 1;
}

.detail-row:last-child {
    border-bottom: none;
}

/* New Filter Layout */
.filter-container {
    display: flex;
    min-height: 200px;
}

.filter-sidebar {
    width: 200px;
    border-right: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.filter-sidebar-item {
    padding: 30px 20px;
    cursor: default;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.filter-sidebar-item:hover {
    background: #e9ecef;
}

.filter-sidebar-item.active {
    background: white;
    border-right: 2px solid #667eea;
    font-weight: 600;
    color: #667eea;
}

.filter-content {
    flex: 1;
    padding: 15px;
    background: white;
    overflow: visible;
}

.filter-panel {
    margin-bottom: 15px;
}

.filter-panel:last-child {
    margin-bottom: 0;
}

.filter-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    font-size: 14px;
}

.filter-tag:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-tag.active {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.filter-dropdown-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.filter-dropdown-group.no-wrap {
    flex-wrap: wrap;
}

.filter-dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-dropdown-item label {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}

.filter-dropdown-item select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    min-width: 120px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    appearance: none;
    cursor: pointer;
}

.filter-dropdown-item select:focus {
    outline: none;
    border-color: #667eea;
}

.filter-section-title {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.filter-sub-group {
    margin-top: 15px;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
}

.custom-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    min-width: 200px;
}

.custom-dropdown-trigger:hover {
    border-color: #667eea;
}

.dropdown-arrow {
    position: absolute;
    right: 10px;
    color: #999;
    font-size: 12px;
}

.custom-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 300px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
}

.custom-dropdown-section {
    border-bottom: 1px solid #f0f0f0;
}

.custom-dropdown-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.section-header:hover {
    background-color: #f8f9fa;
}

.section-icon {
    margin-right: 8px;
    font-size: 14px;
    color: #dc3545;
}

.section-header.active .section-icon:before {
    content: '☑';
    color: #dc3545;
}

.section-header:not(.active) .section-icon:before {
    content: '☐';
}

.section-arrow {
    margin-left: auto;
    color: #999;
    font-size: 12px;
}

.section-content {
    display: none;
    padding: 0 15px 10px 15px;
    background-color: #fafafa;
}

.section-header.active + .section-content {
    display: block;
}

.checkbox-item {
    display: block;
    padding: 8px 5px;
    cursor: pointer;
    font-size: 13px;
}

.checkbox-item:hover {
    color: #667eea;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.custom-dropdown-actions {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
    gap: 10px;
}

.action-reset, .action-confirm {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.action-reset {
    background: #f0f0f0;
    color: #666;
}

.action-reset:hover {
    background: #e0e0e0;
}

.action-confirm {
    background: #dc3545;
    color: white;
}

.action-confirm:hover {
    background: #c82333;
}

/* 已选筛选条件展示区域 */
.active-filters-container {
    flex: 1;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
}

.active-filter-tag:hover {
    border-color: #dc3545;
    background: #fff5f5;
}

.filter-remove {
    margin-left: 8px;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    transition: color 0.2s;
}

.filter-remove:hover {
    color: #dc3545;
}

