.smp-stat-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.smp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

.stat-icon.total {
    background: linear-gradient(135deg, #0A5C36 0%, #0F5132 100%);
    color: white;
}

.stat-icon.pending {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.stat-icon.processing {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

.stat-icon.completed {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.stat-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--smp-dark);
    margin: 0 0 3px 0;
}

.stat-content p {
    font-size: 12px;
    color: var(--smp-gray);
    margin: 0;
}

.smp-recent-orders {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.smp-recent-orders .card-header {
    background: linear-gradient(135deg, var(--smp-primary) 0%, var(--smp-primary-dark) 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smp-recent-orders .card-header h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.btn-view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}