/* Email Deliverability & Analytics Hub Styles */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.analytics-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 1px 4px rgba(15,23,42,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.18s ease;
}

.analytics-stat-card:hover {
    box-shadow: 0 6px 20px rgba(15,23,42,0.08);
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.analytics-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.analytics-section-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}

.analytics-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.analytics-table th {
    background: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.analytics-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    color: #0f172a;
}

.analytics-table tr:hover td {
    background: #f8fafc;
}
