.cnbm-send-log-page .cnbm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.cnbm-send-log-page .cnbm-stat-card {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #2271b1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cnbm-send-log-page .cnbm-stat-card.success {
    border-left-color: #00a32a;
}

.cnbm-send-log-page .cnbm-stat-card.failed {
    border-left-color: #d63638;
}

.cnbm-send-log-page .cnbm-stat-card.rate {
    border-left-color: #50575e;
}

.cnbm-send-log-page .cnbm-stat-label {
    font-size: 13px;
    color: #646970;
    margin-bottom: 5px;
}

.cnbm-send-log-page .cnbm-stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #2271b1;
}

.cnbm-send-log-page .cnbm-stat-card.success .cnbm-stat-value {
    color: #00a32a;
}

.cnbm-send-log-page .cnbm-stat-card.failed .cnbm-stat-value {
    color: #d63638;
}

.cnbm-send-log-page .cnbm-stat-card.rate .cnbm-stat-value {
    color: #50575e;
}

.cnbm-send-log-page .cnbm-filters {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
}

.cnbm-send-log-page .cnbm-filters-inner {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cnbm-send-log-page .cnbm-search-input {
    width: 250px;
}

.cnbm-col-id {
    width: 50px;
}

.cnbm-col-date {
    width: 180px;
}

.cnbm-col-campaign {
    width: 100px;
}

.cnbm-col-status {
    width: 80px;
}

.cnbm-recipient-name {
    color: #646970;
    font-size: 12px;
}

.cnbm-error-summary {
    cursor: pointer;
    color: #d63638;
}

.cnbm-error-details {
    margin-top: 5px;
    padding: 8px;
    background: #fff8e5;
    border-left: 3px solid #d63638;
    font-size: 12px;
}

.cnbm-empty-dash {
    color: #8c8f94;
}

.cnbm-empty-table {
    text-align: center;
    padding: 40px;
    color: #646970;
}

/* Status Badges */
.cnbm-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.cnbm-status-success {
    background: #d7f7e3;
    color: #00550a;
}

.cnbm-status-failed {
    background: #ffebee;
    color: #8b0000;
}

.cnbm-status-badge .dashicons {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

/* Campaign Badges */
.cnbm-campaign-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    background: #f0f0f1;
    color: #50575e;
}

.cnbm-campaign-newsletter {
    background: #e7f5ff;
    color: #0c5687;
}

.cnbm-campaign-custom {
    background: #fff3e0;
    color: #7d4e04;
}