/* Stats Grid */
.ovdm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.ovdm-stat-card {
    background: #fff;
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.ovdm-stat-icon {
    margin-right: 1rem;
    font-size: 2rem;
    color: #555;
}

.ovdm-stat-content h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: #666;
}

.ovdm-stat-content p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
}

/* Status badges */
.ovdm-status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background: #fff8e5;
    color: #dba617;
}

.status-assigned {
    background: #e5f5fa;
    color: #00a0d2;
}

.status-delivered {
    background: #e5f7ee;
    color: #00a32a;
}