.mlm-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.mlm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.mlm-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.mlm-card h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

.mlm-amount {
    font-size: 24px;
    font-weight: bold;
    color: #2271b1;
}

.mlm-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}