.wplms-bulk-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 16px 48px;
}
.wplms-bulk-hero {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #fff;
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 24px;
}
.wplms-bulk-hero h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
}
.wplms-bulk-hero p {
    margin: 0;
    color: rgba(255,255,255,.86);
}
.wplms-bulk-kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px !important;
}
.wplms-bulk-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    margin: 22px 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}
.wplms-bulk-card-header h2 {
    margin: 0 0 8px;
    font-size: 24px;
}
.wplms-bulk-card-header p,
.wplms-bulk-muted {
    color: #64748b;
    margin: 0 0 14px;
}
.wplms-bulk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.wplms-bulk-form label span {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
    color: #0f172a;
}
.wplms-bulk-form select,
.wplms-bulk-form input[type="file"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 9px 12px;
    background: #fff;
}
.wplms-bulk-help {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
}
.wplms-bulk-help p {
    margin: 8px 0 0;
}
.wplms-bulk-button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    padding: 12px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}
.wplms-bulk-button:disabled {
    opacity: .7;
    cursor: not-allowed;
}
.wplms-bulk-alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin: 18px 0;
    font-weight: 600;
}
.wplms-bulk-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.wplms-bulk-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.wplms-bulk-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}
.wplms-bulk-summary span {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    color: #64748b;
}
.wplms-bulk-summary strong {
    display: block;
    color: #0f172a;
    font-size: 24px;
}
.wplms-bulk-table-wrap {
    overflow-x: auto;
}
.wplms-bulk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.wplms-bulk-table th,
.wplms-bulk-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}
.wplms-bulk-table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
}
.wplms-bulk-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-top-color: #2563eb;
    border-radius: 50%;
    margin-left: 12px;
    vertical-align: middle;
    animation: wplmsBulkSpin .8s linear infinite;
}
.wplms-bulk-spinner.is-active {
    display: inline-block;
}
@keyframes wplmsBulkSpin {
    to { transform: rotate(360deg); }
}
@media (max-width: 760px) {
    .wplms-bulk-grid,
    .wplms-bulk-summary {
        grid-template-columns: 1fr;
    }
    .wplms-bulk-hero,
    .wplms-bulk-card {
        border-radius: 16px;
        padding: 20px;
    }
}
