/* Shared Counter Cards SaaS Styles */
.metrics-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 640px) {
    .metrics-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.metric-card {
    border-radius: 12px;
    padding: 18px 20px;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 110px;
}

.metric-card.bg-orange {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
}

.metric-card.bg-dark {
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon .dashicons {
    color: #ffffff;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.trend-percentage {
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 12px;
}

.card-bottom-row h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 2px 0;
    color: #ffffff;
}

.card-bottom-row p {
    font-size: 13px;
    margin: 0;
    opacity: 0.85;
}