body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1400px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: none;
}

.card-header {
    background-color: #343a40;
    color: white;
    border-radius: 10px 10px 0 0 !important;
}

.progress {
    height: 25px;
    margin-bottom: 20px;
}

#progressBar {
    transition: width 0.3s ease;
}

#resultsTable {
    margin-top: 20px;
    font-size: 14px;
}

#resultsTable th {
    white-space: nowrap;
}

.btn {
    margin-right: 10px;
    min-width: 100px;
}

#statusInfo {
    margin-top: 20px;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}

#statusInfo p {
    margin-bottom: 5px;
}

#resultCountBadge {
    background-color: #0d6efd;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    color: white;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    margin-bottom: 8px;
}

.bi {
    margin-right: 5px;
}

/* 来源标签样式 */
.source-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.source-google-maps {
    background-color: #34a853;
    color: white;
}

.source-facebook {
    background-color: #1877f2;
    color: white;
}

.source-google-search {
    background-color: #ea4335;
    color: white;
}

.source-linkedin {
    background-color: #0a66c2;
    color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .card-body {
        padding: 15px;
    }

    #resultsTable {
        font-size: 12px;
    }

    .btn {
        margin-bottom: 10px;
        width: 100%;
    }
}