/* === Bulk tools shared UI === */

.bulk-tool-form .form-label { font-weight: 600; }

.bulk-tool-help {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 1rem;
}

.bulk-tool-help code {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.1rem 0.35rem;
    border-radius: 0.25rem;
    font-size: 0.85em;
    color: #0f172a;
}

.bulk-csv-template-link {
    font-size: 0.85rem;
    text-decoration: none;
}

/* === Bulk result panel === */

.bulk-result .bulk-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
}

.bulk-summary-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bulk-summary-item strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bulk-summary-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.bulk-result-table {
    max-height: 480px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
}

.bulk-result-table table { margin: 0; }

.bulk-result-table thead th {
    position: sticky;
    top: 0;
    background: #f8fafc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.bulk-result-table tbody td {
    font-size: 0.85rem;
    vertical-align: middle;
}
